Problem Statement: So far I can open the .xlsx with xlrd. Now I need to print all the cell.values except the first row, help pls
Current Code:
{import xlrd
book = xlrd.open_workbook("test.xls")
sheet = book.sheet_by_index(0)}
Question: How can I print all the cell values except from the excel sheet except for the first row?