最近 xlrd 更新到了 2.0.1 版本,只支援 .xls 檔案。
所以 pandas.read_excel('xxx.xlsx')
會報錯:
xlrd.biffh.XLRDError: Excel xlsx file; not supported
解決方案
降級 xlrd 版本:
$ pip uninstall xlrd
$ pip install xlrd==1.2.0
openpyxl 代替 xlrd 開啟 .xlsx 檔案也是一種方法:
df=pandas.read_excel(‘data.xlsx’,engine=‘openpyxl’)
本作品採用《CC 協議》,轉載必須註明作者和本文連結