I have first 15 rows of a excel file as \"Header data\". and after 235 rows, \"Footer data\". I need to read data in between these header and footer da
You are interested in data from row 15 to row 235.
You can try this:
import pandas as pd df = pd.read_excel(somefile.xls) df = df[15:236] #we have to include row 235