I am trying to interate over each row in Pandas:
import pandas as pd
df = pd.read_csv(“/home/user/data1”)
for row in df.iterrows():
print (row)
I want to print only the value of the row but it is printing the whole structure like this
(1, Email abc@gmail.com
Name: 229, dtype: object)