gpt4 book ai didi

python - 遍历一列 Pandas 时获取索引

转载 作者:行者123 更新时间:2023-11-28 19:53:59 29 4
gpt4 key购买 nike

我有一个简单的数据框:

索引,a,y0, 1, 21, 4, 62, 5, 8

我想遍历“a”列,并为特定值打印出它的索引。

for x in df.a:
if x == 4:
print ("Index of that row")

当 for 循环命中我正在寻找的“a”列中的特定值时,我应该使用什么语法来获取索引值?

谢谢

最佳答案

系列就像一本字典,所以你可以使用.iteritems方法:

for idx, x in df['a'].iteritems():
if x==4:
print('Index of that row: {}'.format(idx))

关于python - 遍历一列 Pandas 时获取索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41070549/

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