save pandas in file code example
Example 1: pandas to_csv delimiter
df.to_csv('modified.txt', index=False, sep='\t')
Example 2: save dataframe as csv
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv')
df.to_csv('modified.txt', index=False, sep='\t')
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv')