vote up 4 vote down star
5

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?

flag

5 Answers

vote up 11 vote down check
>>> dict = {'a':1,'b':3,'c':2}
>>> sorted(dict, key=lambda key: dict[key])
['a', 'c', 'b']
link|flag
thanks, Brian R. Body. :) – MizardX Feb 22 at 21:26
Bondy* ... can't spell tody – MizardX Feb 22 at 21:29
vote up 4 vote down
list = sorted(dict.items(), key=lambda x: x[1])
link|flag
vote up 0 vote down
[v[0] for v in sorted(foo.items(), key=lambda(k,v): (v,k))]
link|flag
vote up 32 vote down

I like this one:

sorted(d, key=d.get)
link|flag
This is really the most elegant. – Kiv Feb 23 at 0:05
Too bad I haven't waited with the accept. +1 – Richard J. Terrell Feb 24 at 0:14
vote up 0 vote down

odict might work for you.

link|flag

Your Answer

Get an OpenID
or

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