pandas to csv without the index code example
Example 1: dataframe to csv without ids
df.to_csv('your.csv', index=False)
Example 2: python save df to csv
df.to_csv(r'/directory/path/file_name.csv', index = False, header = True)
Example 3: to_csv drop index
df.to_csv('file.csv', index=False)
Example 4: 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)