sortedClassCount=sorted(classCount.iteritems,key=operator.itemgetter(1),reverse=True)
上面的代码,会出现'dict' object has no attribute 'iteritems'的错误
我用的是python3.2版本,好像不能使用iteritems,改成用items()程序就顺利通过了
我想知道是我用错了,还是3.2版本真的不能用iteritems
sortedClassCount=sorted(classCount.iteritems,key=operator.itemgetter(1),reverse=True)
上面的代码,会出现'dict' object has no attribute 'iteritems'的错误
我用的是python3.2版本,好像不能使用iteritems,改成用items()程序就顺利通过了
我想知道是我用错了,还是3.2版本真的不能用iteritems