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(
Was getting the error while I was using jupyter.
ModuleNotFoundError: No module named 'xlrd' ... ImportError: Install xlrd >= 0.9.0 for Excel support
it was resolved for me after using.
!pip install xlrd