i have loaded a csv file as a dataframe using pandas. it has the headers as follows:
account_key status join_date cancel_date days_to_cancel is_udacity is_canceled
under these headers, values are stored in the dataframe.
i am iterating a for-loop over the dataframe(named enrollment) to print out the data row by row
for i in enrollments:
print(i)
the above code should print out the values row by row. however the only output i'm getting is:
account_key
status
join_date
cancel_date
days_to_cancel
is_udacity
is_canceled
why is this happening? i am using jupyter notebook on windows