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

Original code block

sortedVotes = sorted(classVotes.iteritems(),key=operator.itemgetter(1),reverse=True)

The corresponding code block py changed after 3.5

sortedVotes = sorted(classVotes.items(),key=operator.itemgetter(1),reverse=True)

Read More: