pandas read_excelselect sheet code example
Example 1: pandas read excel
import pandas as pd
pd.read_excel('tmp.xlsx', index_col=0)
Example 2: 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')