Oubaida
0
Q:

how to iterate through excel rows in python

print("\nIterating over rows using iterrows() method :\n") 
  
# iterate through each row and select  
# 'Name' and 'Age' column respectively. 
for index, row in df.iterrows(): 
    print (row["Name"], row["Age"]) 
0

New to Communities?

Join the community