AttributeError: 'dict' object has no attribute 'iteritems'
Posted 277223178dudu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: 'dict' object has no attribute 'iteritems'相关的知识,希望对你有一定的参考价值。
在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'的主要内容,如果未能解决你的问题,请参考以下文章
facenet pyhton3.5 训练 train_softmax.py 时报错AttributeError: 'dict' object has no attribute '
'dict' object has no attribute 'a'
AttributeError: 'list' object has no attribute 'data'智障错误
Python AttributeError:“dict”对象没有属性“append”
如何更正错误“AttributeError: 'dict_keys' object has no attribute 'remove'”?
获取 AttributeError: 'dict' object has no attribute 'parse' 。尝试读入多个 xlsx 文件时