pandas无法打开.xlsx文件,xlrd.biffh.XLRDError: Excel xlsx file; not supported

导致原因:
原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。所以pandas.read_excel(‘xxx.xlsx’)会报错。

解决办法:
用openpyxl代替xlrd打开.xlsx文件:

df = pd.read_excel("../student_excel.xlsx",engine="openpyxl")
print(df)

你可能感兴趣的:(pandas无法打开.xlsx文件,xlrd.biffh.XLRDError: Excel xlsx file; not supported)