python panda column to list code example
Example 1: pandas change column to a string
total_rows['ColumnID'] = total_rows['ColumnID'].astype(str)
Example 2: get dataframe column into a list
df_gearME = pd.read_excel('Gear M&Es.xlsx')
df_gearME['ColA'].to_list()