dataframe to file no index code example
Example 1: python save df to csv
df.to_csv(r'/directory/path/file_name.csv', index = False, header = True)
Example 2: pandas to_csv delimiter
df.to_csv('modified.txt', index=False, sep='\t')
df.to_csv(r'/directory/path/file_name.csv', index = False, header = True)
df.to_csv('modified.txt', index=False, sep='\t')