Answers for "how to read xlsx file in jupyter notebook"

0

how to read xlsx file in jupyter notebook

import pandas as pd
path = ('...\\filename.xlsx')
xl = pd.ExcelFile(path)
print(xl.sheet_names)
Posted by: Guest on June-10-2021
0

how to read xlsx file in jupyter notebook

df1 = xl.parse('Sheet1')
Posted by: Guest on June-10-2021

Code answers related to "how to read xlsx file in jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language