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(
Since December 2020 xlrd no longer supports xlsx-Files as explained in the official changelog. You can use openpyxl instead:
openpyxl
pip install openpyxl
And in your python-file:
import pandas as pd pd.read_excel('path/to/file.xlsx', engine='openpyxl')