python - How to iterate over rows in a DataFrame in Pandas - Stack Overflow

PHOTO EMBED

Wed Feb 16 2022 00:45:16 GMT+0000 (Coordinated Universal Time)

Saved by @Milados

import pandas as pd

df = pd.DataFrame({'c1': [10, 11, 12], 'c2': [100, 110, 120]})
df = df.reset_index()  # make sure indexes pair with number of rows
for index, row in df.iterrows():
    print(row['c1'], row['c2'])
content_copyCOPY

https://stackoverflow.com/questions/16476924/how-to-iterate-over-rows-in-a-dataframe-in-pandas