使用python3.9读取excel时报错AttributeError: 'ElementTree' object has no attribute 'getiterator'
- 出现错误的原因
- 解决方法
出现错误的原因
在新版python3.9中,windows中使用的更新删除了getiterator方法,所以我们老版本的xlrd库调用getiterator方法时会报错。AttributeError: 'ElementTree' object has no attribute 'getiterator'
解决方法
wind中找出目录pythonLibsite-packagesxlrd下的xlsx.py文件,
如果找不到文件地址,可以使用wind+R,输入cmd 输入pip show xlrd即可找到xlrd的文件地址:
修改两个地方的的getiterator()改成iter(),下面的两个地方,这里已经把getiterator()改成iter()了
然后重新载入程序就解决了。