如何遍历两个Pandas列?

41 投票
5 回答
97881 浏览
提问于 2025-04-17 17:23

考虑一下:

In [35]: test = pd.DataFrame({'a':range(4),'b':range(4,8)})

In [36]: test
Out[36]:
   a  b
0  0  4
1  1  5
2  2  6
3  3  7

In [37]: for i in test['a']:
   ....:  print i
   ....:
0
1
2
3

In [38]: for i,j in test:
   ....:  print i,j
   ....:
------------------------------------------------------------
Traceback (most recent call last):
  File "<ipython console>", line 1, in <module>
ValueError: need more than 1 value to unpack


In [39]: for i,j in test[['a','b']]:
   ....:  print i,j
   ....:
------------------------------------------------------------
Traceback (most recent call last):
  File "<ipython console>", line 1, in <module>
ValueError: need more than 1 value to unpack


In [40]: for i,j in [test['a'],test['b']]:
   ....:  print i,j
   ....:
------------------------------------------------------------
Traceback (most recent call last):
  File "<ipython console>", line 1, in <module>
ValueError: too many values to unpack

5 个回答

10

试试看,

for i in test.index : print test['a'][i], test['b'][i]

给你一些,

0 4
1 5
2 6
3 7
41

你可以使用 zip 这个功能(在 Python 3 中是自带的,在 Python 2.7 中可以从 itertools 导入为 izip):

Python 3

for a,b in zip(test.a, test.b):
    print(a,b)

Python 2

for a,b in izip(test.a, test.b):
    print a,b
55

使用 DataFrame.itertuples() 这个方法:

for a, b in test.itertuples(index=False):
    print a, b

撰写回答