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}]
|
8
|
I got a list of dictionaries and want that to be sorted by a value of that dictionary. This
sorted by name, should become
|
|||
|
|
|
|
It may look cleaner using a key instead a cmp:
or as J.F.Sebastian and others suggested,
|
||||||||||
|
|
|
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 |
||
|
|
|
|
I guess you've meant:
This would be sorted like this:
|
||
|
|
|
|
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:
But the standard library contains a generic routine for getting items of arbitrary objects:
|
||
|
|
|
|
'key' is used to sort by an arbitrary value and 'itemgetter' sets that value to each item's 'name' attribute. |
||
|
|
|
|
input will now be what you want. |
||
|
|
|
|
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. |
|||
|
|
|
|
import operator to sort the list of dictionaries by key='name' :
to sort the list of dictionaries by key='age'
|
|||
|
|