sparkbyexamples.com
How to Convert Pandas Column to List
You can get or convert the pandas DataFrame column to the list using Series.values.tolist(), since each column in DataFrame is represented as a Series
Naveen Nelamali