This question already has an answer here:
- How do I sort a dictionary by value? 41 answers
I have a dict where each key references an int value. What's the best way to sort the keys into a list depending on the values?
This question already has an answer here:
I have a dict where each key references an int value. What's the best way to sort the keys into a list depending on the values?
>>> mydict = {'a':1,'b':3,'c':2}
>>> sorted(mydict, key=lambda key: mydict[key])
['a', 'c', 'b']
I like this one:
sorted(d, key=d.get)
my_list = sorted(dict.items(), key=lambda x: x[1])
[v[0] for v in sorted(foo.items(), key=lambda(k,v): (v,k))]