码迷,mamicode.com
首页 > 其他好文 > 详细

AttributeError: 'dict' object has no attribute 'iteritems'

时间:2018-09-13 20:04:32      阅读:477      评论:0      收藏:0      [点我收藏+]

标签:att   ict   出现   方法   code   sorted   tee   erro   python3   

在python3.6中
运行
sortedClassCount = sorted(classCount.iteritems(), key=operator.itemgetter(1), reverse=True)
会出现AttributeError: ‘dict‘ object has no attribute ‘iteritems‘的错误提醒
纠正错误的方法为:
iteritems变为items
sortedClassCount = sorted(classCount.items(), key=operator.itemgetter(1), reverse=True)

AttributeError: 'dict' object has no attribute 'iteritems'

标签:att   ict   出现   方法   code   sorted   tee   erro   python3   

原文地址:https://www.cnblogs.com/277223178dudu/p/9642351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!