0
votes
In Python, how can you easily retrieve sorted items from a dictionary?
You can also sort a dictionary by value and control the sort order:
import operator
d = {'b' : 'this is 3', 'a': 'this is 2' , 'c' : 'this is 1'}
for key, value in sorted(d.iterit …
