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}]
|
I got a list of dictionaries and want that to be sorted by a value of that dictionary. This
sorted by name, should become
| ||||
|
feedback
|
|
It may look cleaner using a key instead a cmp:
or as J.F.Sebastian and others suggested,
| |||||||||||||||||||
feedback
|
|
import operator to sort the list of dictionaries by key='name' :
to sort the list of dictionaries by key='age'
| |||||
feedback
|
|
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:
| |||
|
feedback
|
|
If you want to sort the list by multiple keys you can do the following:
It is rather hackish, since it relies on converting the values into a single string representation for comparison, but it works as expected for numbers including negative ones (although you will need to format your string appropriately with zero paddings if you are using numbers) | ||||
|
feedback
|
|
I guess you've meant:
This would be sorted like this:
| |||
|
feedback
|
|
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 | |||
|
feedback
|
input will now be what you want. | |||
|
feedback
|
'key' is used to sort by an arbitrary value and 'itemgetter' sets that value to each item's 'name' attribute. | |||
|
feedback
|
|
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. | ||||
|
feedback
|