I have a list with individual items as dictionaries which might have different keys. I want to sort them based on the values. E.g.
Lets say,
unsorted_list = [{'a': 23}, {'b': 34}, {'c': 2}]
After sort, (descending)
sorted_list = [{'b': 34}, {'a': 23}, {'c': 2}]
Please let me how to do it in python