Say I have the following Excel file:
A B C 0 - - - 1 Start - - 2 3 2 4 3 7 8 4 4 11 2 17
If you know the specific rows you are interested in, you can skip from the top using skiprow and then parse only the row (or rows) you want using nrows - see pandas.read_excel
skiprow
nrows
df = pd.read_excel('myfile.xlsx', 'Sheet1', skiprows=2, nrows=3,)