I am using Pandas library and Python.
I have an Excel file that has some heading information on the top of an Excel sheet which I do not need for data extraction.
You can use pd.read_csv and specify skiprows=4:
skiprows=4
df = pd.read_csv('test.csv', skiprows=4)