how to avoid the index column to read in pandas dataframe code example
Example 1: pandas save without index
#Save to csv without index:
df.to_csv('name.csv', index=False)
Example 2: 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'