PANDAS ILOC termasuk header

new_header = df.iloc[0] 
df = df[1:] 
df.columns = new_header
Programming Doggo