make a df from list and save to csv code example
Example 1: how to write csv from a dataframe pythin
df.to_csv('file_name.csv')
Example 2: download dataframe as csv
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv')
df.to_csv('file_name.csv')
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv')