python sort list of dict by value code example
Example 1: sort list of dictionaries by key python
newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])
Example 2: sort dict by value
dict(sorted(x.items(), key=lambda item: item[1]))
newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])
dict(sorted(x.items(), key=lambda item: item[1]))