Here is the answer.
df = pd.DataFrame(index=[-1, 0, 1, 2], data={'foo': [7, 85, 14, 5]}) for index, value in df['foo'].items(): print(index, value)
The output is below.
-1 7 0 85 1 14 2 5