Answers for "how to read excel file with multiple sheets in python"

0

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')
Posted by: Guest on May-14-2020

Code answers related to "how to read excel file with multiple sheets in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language