how to sort a list with dict values in python code example
Example: sort list of dictionaries by key python
newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])
newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])