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.

link|improve this question

54% accept rate
16  
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 '09 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 '09 at 1:18
The dictionary data structure does not have inherent order. You can iterate through it but there's nothing to guarantee that the iteration will follow any particular order. This is by design, so your best bet is probaly using anohter data structure for representation. – Daishiman Jul 5 '10 at 2:08
feedback

17 Answers

up vote 238 down vote accepted
+500

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.iteritems(), 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|improve this answer
5  
for timings on various dictionary sorting by value schemes: writeonly.wordpress.com/2008/08/30/… – Gregg Lind Mar 14 '09 at 17:55
2  
sorted_x.reverse() will give you a descending ordering (by the second tuple element) – saidimu May 3 '10 at 5:24
22  
saidimu: Since we're already using sorted(), it's much more efficient to pass in the reverse=True argument. – rmh Jul 5 '10 at 2:59
11  
In python3 I used a lambda: sorted(d.items(), key=lambda x: x[1]). Will this work in python 2.x? – Keyo Feb 15 '11 at 15:05
7  
OrderedDict added to collections in 2.7. Sorting example shown at: docs.python.org/library/… – monkut Apr 24 '11 at 6:31
show 1 more comment
feedback

As simple as: sorted(dict1, key=dict1.get)

Well, it is actually possible to do a "sort by dictionary values". Recently had to do that in a Code Golf (http://stackoverflow.com/questions/3169051#3170549). Abridged, the problem was of the kind: given a text, count how often each word is encountered and display list of the top words, sorted by decreasing frequency.

If you construct dictionary with the words as keys and the number of occurences of each word as value, simplified here as

d = defaultdict(int)
for w in text.split():
  d[w] += 1

then you can get list of the words in order of frequency of use with sorted(d, key=d.get) - the sort iterates over the dictionary keys, using as sort-key the number of word occurrences.

for w in sorted(d, key=d.get, reverse=True):
  print w, d[w]

I am writing this detailed explanation to illustrate what do people often mean by "i can easily sort a dictionary by key but how do i sort by value" - and i think the OP was trying to address such issue. And the solution is to do sort of list of the keys, based on the values, as shown above.

link|improve this answer
This is also good but key=operator.itemgetter(1) should be more scalable for efficiency than key=d.get – smci Dec 9 '11 at 21:18
operator.itemgetter appears to not work – raylu Feb 9 at 22:32
feedback

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|improve this answer
1  
+1: sorted(d.values()) is easier to read/understand than Nas's sorted(dict1, key=dict1.get), and therefore more Pythonic. About readability, please also consider my namedtuple suggestion. – Remi Aug 30 '11 at 23:42
Simple and great! – flypen Nov 5 '11 at 3:58
feedback

You could use:

sorted(d.items(), key=lambda x: x[1])

This will sort the dictionary by the values of each entry within the dictionary from smallest to largest.

link|improve this answer
3  
+1 For being the cleanest solution. However it doesn't sort the dictionary (hash table, not possible), rather it returns an ordered list of (key, value) tuples. – Keyo Feb 15 '11 at 15:10
feedback

in recent Python 2.7, we have new OrderedDict type, which remembers the order in which the items were added.

>>> d = {"third": 3, "first": 1, "fourth": 4, "second": 2}

>>> for k, v in d.items():
...     print "%s: %s" % (k, v)
second: 2
fourth: 4
third: 3
first: 1

>>> d
{'second': 2, 'fourth': 4, 'third': 3, 'first': 1}

>>> from collections import OrderedDict
>>> # make a new ordered dictionary from the original,
>>> # sorting its items by values
>>> d_sorted_by_value = OrderedDict(sorted(d.items(), key=lambda x: x[1]))

>>> # behaves like a normal dict
>>> for k, v in d_sorted_by_value.items():
...     print "%s: %s" % (k, v)
first: 1
second: 2
third: 3
fourth: 4

>>> d_sorted_by_value
OrderedDict([('first': 1), ('second': 2), ('third': 3), ('fourth': 4)])
link|improve this answer
This is not what the question is about - it is not about maintaining order of keys but about "sorting by value" – Nas Banov Jul 5 '10 at 7:07
1  
@Nas Banov: it is NOT sorting by the key. it is sorting in the order, we create the items. in our case, we sort by the value. unfortunately, the 3-item dict was unfortunately chosen so the order was the same, when sorted voth by value and key, so i expanded the sample dict. – mykhal Jul 5 '10 at 10:56
feedback

Pretty much the same as Hank Gay's answer;

sorted([(value,key) for (key,value) in mydict.items()])
link|improve this answer
3  
..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 '09 at 1:45
You may still need to swap the (value,key) tuple elements to end up with the (key, value). Another list comprehension is then needed. [(key, value) for (value, key) in sorted_list_of_tuples] – saidimu May 3 '10 at 5:22
feedback

New Answer -- two years late...


It can often be very handy to use namedtuple. For example, you have a dictionary of 'name' as keys and 'score' as values and you want to sort on 'score':

import collections
Player = collections.namedtuple('Player', 'score name')
d = {'John':5, 'Alex':10, 'Richard': 7}

sorting with lowest score first:

worst = sorted(Player(v,k) for (k,v) in d.items())

sorting with highest score first:

best = sorted([Player(v,k) for (k,v) in d.items()], reverse=True)

Now you can get the name and score of, let's say the second-best player (index=1) very Pythonically like this:

    player = best[1]
    player.name
        'Richard'
    player.score
         7
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
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 '09 at 1:14
feedback
import operator
origin_list = [
    {"name": "foo", "rank": 0, "rofl": 20000},
    {"name": "Silly", "rank": 15, "rofl": 1000},
    {"name": "Baa", "rank": 300, "rofl": 20},
    {"name": "Zoo", "rank": 10, "rofl": 200},
    {"name": "Penguin", "rank": -1, "rofl": 10000}
]
print ">> Original >>"
for foo in origin_list:
    print foo

print "\n>> Rofl sort >>"
for foo in sorted(origin_list, key=operator.itemgetter("rofl")):
    print foo

print "\n>> Rank sort >>"
for foo in sorted(origin_list, key=operator.itemgetter("rank")):
    print foo

Original >> {'name': 'foo', 'rank': 0, 'rofl': 20000} {'name': 'Silly', 'rank': 15, 'rofl': 1000} {'name': 'Baa', 'rank': 300, 'rofl': 20} {'name': 'Zoo', 'rank': 10, 'rofl': 200} {'name': 'Penguin', 'rank': -1, 'rofl': 10000}

Rofl >> {'name': 'Baa', 'rank': 300, 'rofl': 20} {'name': 'Zoo', 'rank': 10, 'rofl': 200} {'name': 'Silly', 'rank': 15, 'rofl': 1000} {'name': 'Penguin', 'rank': -1, 'rofl': 10000} {'name': 'foo', 'rank': 0, 'rofl': 20000}

Rank >> {'name': 'Penguin', 'rank': -1, 'rofl': 10000} {'name': 'foo', 'rank': 0, 'rofl': 20000} {'name': 'Zoo', 'rank': 10, 'rofl': 200} {'name': 'Silly', 'rank': 15, 'rofl': 1000} {'name': 'Baa', 'rank': 300, 'rofl': 20}

link|improve this answer
feedback

I had the same problem, I solved it like this:

WantedOutput = sorted(MyDict,key= lambda x : MyDict[x])

(people who answer: "It is not possible to sort a dict" did not read the question!! In fact "I can sort on the keys, but how can I sort based on the values?" clearly means that he wants a list of the keys sorted according to the value of their values.)

Please remark that the order is not well defined (keys with the same value will be in an arbitrary order in the output list)

link|improve this answer
feedback

Use ValueSortedDict from dicts:

from dicts.sorteddict import ValueSortedDict
d = {1: 2, 3: 4, 4:3, 2:1, 0:0}
sorted_dict = ValueSortedDict(d)
print sorted_dict.items() 

[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]
link|improve this answer
feedback

If your values are integers, and you use Python 2.7 or newer, you can use collections.Counter instead of dict. The most_common method will give you all items, sorted by the value.

link|improve this answer
feedback
from django.utils.datastructures import SortedDict

def sortedDictByKey(self,data):
    """Sorted dictionary order by key"""
    sortedDict = SortedDict()
    if data:
        if isinstance(data, dict):
            sortedKey = sorted(data.keys())
            for k in sortedKey:
                sortedDict[k] = data[k]
    return sortedDict
link|improve this answer
question was: sort by value, not by keys... I like seeing a function. You can import collections and of course use sorted(data.values()) – Remi Aug 30 '11 at 0:38
feedback

Iterate through a dict and sort it by its values in descending order:

$ python --version
Python 3.2.2

$ cat sort_dict_by_val_desc.py 
dictionary = dict(siis = 1, sana = 2, joka = 3, tuli = 4, aina = 5)
for word in sorted(dictionary, key=dictionary.get, reverse=True):
  print(word, dictionary[word])

$ python sort_dict_by_val_desc.py 
aina 5
tuli 4
joka 3
sana 2
siis 1
link|improve this answer
feedback
import operator
slovar_sorted=sorted(slovar.items(), key=operator.itemgetter(1), reverse=True)
print(slovar_sorted)

This Works in 3.1.x

link|improve this answer
feedback

I find it strange that no one has posted this. Worked nicely for me.

d = {100: 2, 3: 40, 4000:3, 2:1, 0:0}
for key in sorted(d.keys(), key=int):
  print key



0
2
3
100
4000
link|improve this answer
1  
humorous answer ? – Xavier Combelle Dec 27 '11 at 15:17
lol. had to add hahaha to post the minimum amount of characters. – Sushant Khurana Mar 31 at 11:26
feedback

Your Answer

 
or
required, but never shown

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