Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

marked as duplicate by Woot4Moo, FakeRainBrigand, Ryan McDonough, mdm, Mark Mar 25 at 14:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 43 down vote accepted
>>> mydict = {'a':1,'b':3,'c':2}
>>> sorted(mydict, key=lambda key: mydict[key])
['a', 'c', 'b']
share|improve this answer

I like this one:

sorted(d, key=d.get)
share|improve this answer
6  
This is really the most elegant. – Kiv Feb 23 '09 at 0:05
4  
Too bad I haven't waited with the accept. +1 – George Feb 24 '09 at 0:14
14  
@George, you can choose a better accepted answer – gnibbler Feb 15 '12 at 1:19
4  
George has not been logged in since 2011 – Prof. Falken Sep 19 '12 at 6:44
Nice, thought it would be nice to have an elegant solution which gives (key,value) pairs sorted by key. ...and doesn't require providing the dict variable name more than once (I tend to have very long descriptive variable names). d.iteritems() still seems the most useful. – travc Jan 30 at 8:51
list = sorted(dict.items(), key=lambda x: x[1])
share|improve this answer
[v[0] for v in sorted(foo.items(), key=lambda(k,v): (v,k))]
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.