Answers for "DataFrame.iterrows is a generator which yields both the index and row (as a Series):"

0

DataFrame.iterrows is a generator which yields both the index and row (as a Series):

import pandas as pd

df = pd.DataFrame({'c1': [10, 11, 12], 'c2': [100, 110, 120]})

for index, row in df.iterrows():
    print(row['c1'], row['c2'])
Posted by: Guest on January-17-2021

Code answers related to "DataFrame.iterrows is a generator which yields both the index and row (as a Series):"

Python Answers by Framework

Browse Popular Code Answers by Language