I am working on a couple of excel sheets which all look like the first one attached. Currently I'm trying to remove the first 11 rows, and also the first column based on the index. Somehow I can not get it to work, The title "Eidgenössische Volkszählung 2000. Bevölkerungsentwicklung der Gemeinden 1850-2000" is still visible. It removes all the rows without the Title.
My end goal would be to make it look like the second picture, shouldnt be that hard i think.
If someone could tell me how to remove rows and colums based on the index i would be grateful. I did not find any solution within my 1h google search.
import pandas as pd
df = pd.read_excel("AG.xls", "AG")
df = df.drop([0,1,2,3,4,5,6,7,8,9,10])
print(df)



skiprows=argument inread_excel