vote up 4 vote down star
4

I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary.

I can sort on the keys, but how can I sort based on the values?

Note: I have read this post 72899 and probably could change my code to have a list of dictionaries but since I do not really need a list of dictionaries I wanted to know if there a simpler solution.

flag

38% accept rate
Near-dup: stackoverflow.com/questions/575819/… – Adam Rosenfield Mar 5 at 0:59
1  
He quotes another post, indicating he did search. Stack Overflow has a lot of questions, so dups are inevitable for people new to the site (even with searching), and this one has a better answer :-) – Jarret Hardie Mar 5 at 1:06
1  
I strongly suggest that you consider that perhaps a dictionary isn't the best representation for your data. – DLJessup Mar 5 at 1:18

5 Answers

vote up 1 vote down

Technically, dictionaries aren't sequences, and therefore can't be sorted. You can do something like

sorted(a_dictionary.values())

assuming performance isn't a huge deal.

UPDATE: Thanks to the commenters for pointing out that I made this way too complicated in the beginning.

link|flag
The list comprehension is no longer needed. You can simply pass in sorted(a_dictionary.values()). Even faster, if we want more would be to do foo = a_dictionary.values(); foo.sort() . I don't think speed is that much of an issue, though. Getting rid of the listcomp would simply eliminate redundancy. – Devin Jeanpierre Mar 5 at 1:14
vote up 19 vote down

It is not possible to sort a dict, only to get a representation of a dict that is sorted. Dicts are inherently orderless, but other types, such as lists and tuples, are not. So you need a sorted representation, which will be a list -- probably a list of tuples. For instance:

import operator
x = {1: 2, 3: 4, 4:3, 2:1, 0:0}
sorted_x = sorted(x.items(), key=operator.itemgetter(1))

sorted_x will be a list of tuples sorted by the second element in each tuple. dict(sorted_x) == x.

link|flag
for timings on various dictionary sorting by value schemes: writeonly.wordpress.com/2008/08/… – Gregg Lind Mar 14 at 17:55
vote up 10 vote down

Dicts can't be sorted, but you can build sorted list from them.

A sorted list of dict values:

sorted(d.values())

A list of (key, value) pairs, sorted by value:

from operator import itemgetter
sorted(d.items(), key=itemgetter(1))
link|flag
vote up 2 vote down

Pretty much the same as Hank Gay's answer;

sorted([(value,key) for (key,value) in mydict.items()])
link|flag
..and as with Hank Gay's answer, you don't need the square brackets. sorted() will happily take any iterable, such as a generator expression. – John Fouhy Mar 5 at 1:45
vote up 2 vote down

You can create an "inverted index", also

from collections import defaultdict
inverse= defaultdict( list )
for k, v in originalDict.items():
    inverse[v].append( k )

Now your inverse has the values; each value has a list of applicable keys.

for k in sorted(inverse):
    print k, inverse[k]
link|flag

Your Answer

Get an OpenID
or

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