gpt4 book ai didi

python - 通过索引访问行号

转载 作者:行者123 更新时间:2023-12-03 20:33:45 25 4
gpt4 key购买 nike

我正在尝试使用与该行对应的索引值访问行号。

mydata = [{'name': 'John', 'age': 75, 'height':1.78},
{'name': 'Paul', 'age': 22, 'height':1.71}]

df = pandas.DataFrame(mydata)
df = df.set_index('name')

获取第 1 行的索引值
index_value = df.index[1]

有了该索引值,我该如何返回行号?在这种情况下,1。

最佳答案

您也可以使用 get_loc :

df.index.get_loc(index_value)
Out[67]: 1

关于python - 通过索引访问行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37497094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com