ligne d'en-tête de mise à jour Python

new_header = df.iloc[0] 

df = df[1:] 

df.columns = new_header
Weary Wolverine