pandas réinitialiser l'index sans ajouter une colonne

# without adding index column --> drop = True
df = df.reset_index(drop=True)
D Goglia