dataframe remove index column dataframe code example
Example 1: how to drop the index column in pandas
df.reset_index(drop=True, inplace=True)
Example 2: remove index in pd.read
df.to_csv(filename, index=False)
df.reset_index(drop=True, inplace=True)
df.to_csv(filename, index=False)