AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘解决方案【Bug已解决-Python】
admin 阅读: 2024-03-22
后台-插件-广告管理-内容页头部广告(手机) |
本文主要介绍了AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘解决方案,希望能对大家有所帮助。
项目场景:
今天在运行项目时,却出现AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘的错误提示,具体报错信息如下所示:
AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘
问题描述
在项目运行过程中,出现了AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘的错误提示。具体的错误信息如下所示:
AttributeError: ‘DataFrame‘ object has no attribute ‘iteritems‘- 1
这个错误表明在尝试使用DataFrame对象的iteritems属性时出现了问题。
原因分析:
是安装pandas时未指定固定版本,导致安装了最新的2.0.3,2.0以上的版本不支持iteritems了,所以报错
解决方案:安装pandas时指定2.0以下的版本,如:1.1.5
解决方案ÿ
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。
在线投稿:投稿 站长QQ:1888636
后台-插件-广告管理-内容页尾部广告(手机) |