Back
Hi. Please help me solve this error. I am trying to print row values
import pandas as pddf = pd.read_csv(“/home/user/data1”)for row in df.iterrows(): print (row['Email'])
import pandas as pd
df = pd.read_csv(“/home/user/data1”)
for row in df.iterrows():
print (row['Email'])
This error comes when you can't get row information using row["pool_number"].
You should simply use this method to retrieve the value by index number:
row_name[0]
Hope this answer helps you!
Thus, Linear Regression and Machine Learning Course, both are related. If you want to know more about this course study Machine Learning Tutorials.
You can refer to our Python online course for more information.
31k questions
32.8k answers
501 comments
693 users