Couper les lignes Dataframe
#Creates new dataframe without first 3 rows
df = df.iloc[3:]
Jittery Jay
#Creates new dataframe without first 3 rows
df = df.iloc[3:]