Pandas Redefinir índice sem adicionar coluna

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