pandas to csv with index as column code example
Example 1: dataframe to csv without ids
df.to_csv('your.csv', index=False)
Example 2: 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)