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

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 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.

share|improve this question
51  
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
2  
"sorted()" can operate on dictionaries (and returns a list of sorted keys), so I think he's aware of this. Without knowing his program, it's absurd to tell someone they're using the wrong data structure. If fast lookups are what you need 90% of the time, then a dict is probably what you want. – bobpaul Feb 15 at 19:04

22 Answers

up vote 575 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.

share|improve this answer
7  
for timings on various dictionary sorting by value schemes: writeonly.wordpress.com/2008/08/30/… – Gregg Lind Mar 14 '09 at 17:55
13  
sorted_x.reverse() will give you a descending ordering (by the second tuple element) – saidimu May 3 '10 at 5:24
72  
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
14  
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
15  
OrderedDict added to collections in 2.7. Sorting example shown at: docs.python.org/library/… – monkut Apr 24 '11 at 6:31
show 2 more comments

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.

share|improve this answer
6  
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 '12 at 22:32
@raylu in what way? – Devin Jeanpierre Jul 4 '12 at 18:47
I was mistaken. – raylu Jul 5 '12 at 19:00
You will first need to: import collections # to use defaultdict – rjurney Apr 12 at 23:13

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.

share|improve this answer
12  
+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
clean and short! – Atul Makwana Dec 31 '12 at 11:31
1  
@Keyo I'm new to python and came across the need to sort a dictionary. And I want to make sure I understood you well: there is no way to use lambda to sort a dictionary, right? – lv10 Jan 9 at 4:20
From what I've seen (docs.python.org/2/library/…), there is a class called OrderedDict which can be sorted and retain order whilst still being a dictionary. From the code examples, you can use lambda to sort it, but I haven't tried it out personally :P – UsAndRufus Feb 20 at 10:38

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))
share|improve this answer
2  
+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
What order are keys with the same value placed in? I sorted the list by keys first, then by values, but the order of the keys with the same value does not remain. – SabreWolfy Jun 18 '12 at 10:04
4  
@Remi, those are two different things! sorted(d.values()) returns sorted list of the values from the dictionary, where sorted(d, key=d.get) returns list of the keys, sorted in order of the values! Way different. If you don't see the need for the latter, read my post above for "real life" example – Nas Banov Feb 11 at 6:39
@Nas_Banov, Your comment is very appreciated, so very true! And yes I see the need. – Remi Feb 13 at 13:01

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}

To make a new ordered dictionary from the original, sorting by the values:

>>> from collections import OrderedDict
>>> d_sorted_by_value = OrderedDict(sorted(d.items(), key=lambda x: x[1]))

The OrderedDict 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)])
share|improve this answer
1  
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
2  
@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

Pretty much the same as Hank Gay's answer;

sorted([(value,key) for (key,value) in mydict.items()])
share|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

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

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]
share|improve this answer

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)

share|improve this answer

Answering this 5 years old question as this deserves a new outlook using the collections.Counter. Note, this will work for both numeric and non numeric values.

>>> x = {1: 2, 3: 4, 4:3, 2:1, 0:0}
>>> from collections import Counter
>>> #To sort in reverse order
>>> Counter(x).most_common()
[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]
>>> #To sort in ascending order
>>> Counter(x).most_common()[::-1]
[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]
>>> #To get a dictionary sorted by values
>>> from collections import OrderedDict
>>> OrderedDict(Counter(x).most_common()[::-1])
OrderedDict([(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)])
share|improve this answer

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.

share|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
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}

share|improve this answer

If values are numeric you may also use Counter from collections

from collections import Counter

x={'hello':1,'python':5, 'world':3}
c=Counter(x)
print c.most_common()


>> [('python', 5), ('world', 3), ('hello', 1)]    
share|improve this answer

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)]
share|improve this answer

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.

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

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

This works in 3.1.x:

import operator
slovar_sorted=sorted(slovar.items(), key=operator.itemgetter(1), reverse=True)
print(slovar_sorted)
share|improve this answer

For the sake of completeness, I am posting a solution using heapq. Note, this method will work for both numeric and non-numeric values

>>> x = {1: 2, 3: 4, 4:3, 2:1, 0:0}
>>> x_items = x.items()
>>> heapq.heapify(x_items)
>>> #To sort in reverse order
>>> heapq.nlargest(len(x_items),x_items, operator.itemgetter(1))
[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]
>>> #To sort in ascending order
>>> heapq.nsmallest(len(x_items),x_items, operator.itemgetter(1))
[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]
share|improve this answer

python 3.2

x={"b":4,"a":3,"c":1}
for i in sorted(x.values()):
    print(list(x.keys())[list(x.values()).index(i)])
share|improve this answer

I came up with this one,

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

for python 3.x: x.items() replacing iteritems().

>>> sorted_x
{0: 0, 1: 2, 2: 1, 3: 4, 4: 3}
share|improve this answer

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
share|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 '12 at 11:26

protected by Brad Jun 23 '12 at 15:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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