multipl excel sheets in pandas

Solutions on MaxInterview for multipl excel sheets in pandas by the best coders in the world

showing results for - "multipl excel sheets in pandas"
Hind
25 May 2018
1xls = pd.ExcelFile('path_to_file.xls')
2df1 = pd.read_excel(xls, 'Sheet1')
3df2 = pd.read_excel(xls, 'Sheet2')
4