Basically I need to convert a column I got a from a csv using pandas and put it into a list. It's currently a pandas object and I tried doing list(pandaObject) but that doesn't work. Does anybody have any ideas?
df = pandas.read_csv(csv_file)
years=df[['1987']] #Gets a a column
###Now I need something to convert years to a list###