save df to csv without index code example
Example 1: save dataframe to csv without index
df.to_csv(f"{filename}", index=False)
Example 2: to_csv without index
df.to_csv('your.csv', index=False)
Example 3: how to write csv from a dataframe pythin
df.to_csv('file_name.csv')
Example 4: to csv remove index python pandas
>>> df = pd.DataFrame({'name': ['Raphael', 'Donatello'],
... 'mask': ['red', 'purple'],
... 'weapon': ['sai', 'bo staff']})
>>> df.to_csv(index=False)
'name,mask,weapon\nRaphael,red,sai\nDonatello,purple,bo staff\n'