Skip to content
Advertisement

Sort list of dictionaries with inconsistent keys

I want to sort a list of dictionaries. The problem is that key in the dictionaries are not same, but every dictionary will have only one item for sure. For example, [{'foo':39}, {'bar':7}, {'spam':35}, {'buzz':4}] Here, key is the name of the person and value is the age. I want result as [{'buzz': 4}, {'bar': 7}, {'spam': 35}, {'foo': 39}] What I am doing is :

JavaScript

Is there any better solution?

Advertisement

Answer

You can use values of dict in lambda like below :

JavaScript

You can extent this for use list with multi elements:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement