how to read xlsx file in jupyter notebook

Solutions on MaxInterview for how to read xlsx file in jupyter notebook by the best coders in the world

showing results for - "how to read xlsx file in jupyter notebook"
Celia
22 Jan 2019
1import pandas as pd
2path = ('...\\filename.xlsx')
3xl = pd.ExcelFile(path)
4print(xl.sheet_names)
5
Juan Diego
14 Nov 2020
1df1 = xl.parse('Sheet1')
2