saving a csv file in pandas code example
Example: saving a pandas dataframe as a csv
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv', index = False)
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv', index = False)