I am trying to read a .xlsx with pandas, but get the follwing error:
.xlsx
data = pd.read_excel(low_memory=False, io=\"DataAnalysis1/temp1.xlsx\").fillna(
First of all you need to install xlrd & pandas packages. Then try below code.
import xlrd import pandas as pd xl = pd.ExcelFile("fileName.xlsx") print(xl.parse(xl.sheet_names[0]))