I'm new to this page. I've managed to find myself in a little bit of an issue. Using python I'm looking for a way to loop through the different cells of an excel column using pandas and dataframes. The code I'm using is:
variable = pd.DataFrame(data, columns=['Column'])
for cell in variable:
print(cell)
And this only prints the first cell. What am I doing wrong?