read multiple excel sheets python pandas code example
Example 1: how to read excel file with multiple sheets in python
xls = pd.ExcelFile('path_to_file.xls')
df1 = pd.read_excel(xls, 'Sheet1')
df2 = pd.read_excel(xls, 'Sheet2')
Example 2: how to read multiple worksheet from a single workbook in column in python
stops = read_excel_sheets("data/PIALog_through-20171231.xlsx")