How to iterate over rows in a DataFrame in Pandas
• 1 minPandas gives you the ability to loop over columns and rows.
Here are the different ways to loop over columns or rows using the Pandas Library.
We define our DataFrame first
We define an example DataFrame.
Loop over a specific column using a for loop
Loop over rows using apply
We usually use apply when we want to create another column with the current Data frame data.
Loop over rows using iterrows()
for idx, row in df.iterrows():
print(f"{row['student']} : {row['gpa']}")