iterrows
gives you (index, row)
tuples rather than just the rows, so you should be able to access the columns in basically the same way you were thinking if you just do:
for index, row in df.iterrows():
print row['Date']
iterrows
gives you (index, row)
tuples rather than just the rows, so you should be able to access the columns in basically the same way you were thinking if you just do:
for index, row in df.iterrows():
print row['Date']