change index of pandas dataframe to the first index code example
Example 1: set index to column pandas
df = df.set_index('col')
df['col'] = df.index
Example 2: change index to dataframe pandas
#cree un indice par defaut sur la base de donnee
df.reset_index()