Removing Index Column Pandas

Use index=False.

df.to_csv('your.csv', index=False)

Last updated