Using Openpyxl and python3.5, I tried getting the first row from an excel worksheet using a subscript but I an error.
# after getting filename # after loading w
I finally found the answer in the documentation:
first_row = worksheet[1] # worksheet[row_index_from_1]
This worked for me.