vote up 7 vote down star
8

I got a list of dictionaries and want that to be sorted by a value of that dictionary.

This

[{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]

sorted by name, should become

[{'name':'Bart', 'age':10}, {'name':'Homer', 'age':39}]
flag

8 Answers

vote up 23 vote down check

It may look cleaner using a key instead a cmp:

newlist = sorted(l, key=lambda k: k['name'])

or as J.F.Sebastian and others suggested,

from operator import itemgetter
newlist = sorted(l, key=itemgetter('name'))
link|flag
Using key is not only cleaner but more effecient too. – J.F. Sebastian Sep 16 '08 at 15:03
lambda k: k['name'] could be replaced by operator.itemgetter('name'). – J.F. Sebastian Sep 16 '08 at 15:05
What would you change to make it sort descending? – NealWalters Oct 13 at 4:14
The fastest way would be to add a newlist.reverse() statement. Otherwise you can define a comparison like cmp=lambda x,y: - cmp(x['name'],y['name']). – Mario Oct 13 at 7:14
if the sort value is a number you could say: lambda k: (k['age'] * -1) to get a reverse sort – Philluminati Nov 20 at 15:16
show 1 more comment
vote up 2 vote down

You have to implement your own comparison function that will compare the dictionaries by values of name keys. See Sorting Mini-HOW TO from PythonInfo Wiki

link|flag
vote up 2 vote down

I guess you've meant:

[{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]

This would be sorted like this:

sorted(l,cmp=lambda x,y: cmp(x['name'],y['name']))
link|flag
vote up 2 vote down

You could use a custom comparison function, or you could pass in a function that calculates a custom sort key. That's usually more efficient as the key is only calculated once per item, while the comparison function would be called many more times.

You could do it this way:

def mykey(adict): return adict['name']
x = [{'name': 'Homer', 'age': 39}, {'name': 'Bart', 'age':10}]
sorted(x, key=mykey)

But the standard library contains a generic routine for getting items of arbitrary objects: itemgetter. So try this instead:

from operator import itemgetter
x = [{'name': 'Homer', 'age': 39}, {'name': 'Bart', 'age':10}]
sorted(x, key=itemgetter('name'))
link|flag
vote up 1 vote down
import operator
a_list_of_dicts.sort(key=operator.itemgetter('name'))

'key' is used to sort by an arbitrary value and 'itemgetter' sets that value to each item's 'name' attribute.

link|flag
vote up 0 vote down
input = [{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}]

input.sort(lambda x,y : cmp(x['name'], y['name']))

input will now be what you want.

link|flag
vote up 0 vote down

Here is my answer to a related question on sorting by multiple columns. It also works for the degenerate case where the number of columns is only one.

link|flag
vote up 0 vote down

import operator

to sort the list of dictionaries by key='name' :

list_of_dicts.sort(key=operator.itemgetter('name'))

to sort the list of dictionaries by key='age'

list_of_dicts.sort(key=operator.itemgetter('age'))
link|flag

Your Answer

Get an OpenID
or

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