读Excel
xlrd
安装
#安装1.2.0版本,高版本不支持xlsx格式,说是xlsx安全性问题故不支持xlsx格式了,但自己使用就无所谓了 pip install xlrd==1.2.0
问题:使用python3.9读取excel时报错AttributeError: ‘ElementTree’ object has no attribute ‘getiterator’
解决办法:在新版python3.9中,windows中使用的更新删除了getiterator方法,所以我们老版本的xlrd库调用getiterator方法时会报错。打开xlrd库路径下的xlrd.py
文件,将所有的getiterator()
替换成iter()
,总共有2处