python xlrd库报错AttributeError: ‘ElementTree‘ object has no attribute ‘getiterator‘
报错原因:在新版python3.9中,windows中使用的更新删除了getiterator方法,所以我们老版本的xlrd库调用getiterator方法时会报错。2.降低版本后还会报错:AttributeError: ‘ElementTree‘ object has no attribute ‘getiterator‘1.首先报错原因是xlrd版本过高,需要卸载,下载低版本的库:降低第三方库xl
·
1.首先报错原因是xlrd版本过高,需要卸载,下载低版本的库:降低第三方库xlrd的版本至1.2.0。
https://www.cnblogs.com/hls-code/p/15715697.html
2.降低版本后还会报错:AttributeError: ‘ElementTree‘ object has no attribute ‘getiterator‘
报错原因:在新版python3.9中,windows中使用的更新删除了getiterator方法,所以我们老版本的xlrd库调用getiterator方法时会报错。
将xlsx.py文件中的所有getiterator()替换成iter()。解决
更多推荐
已为社区贡献8条内容
所有评论(0)