I have a CSV File, and I want to loop through the values of one column (in python). The csv file has 5000 rows and two columns. How do I loop through only the first column and not the second?
I tried doing
for row in df
for column in row
But this didn't work. How do I fix it?