1
vote
In Python how do I sort a list of dictionaries by values of the dictionary?
import operator
a_list_of_dicts.sort(key=operator.itemgetter('name'))
'key' is used to sort by an arbitrary value and 'itemgetter' sets that value to each item's 'name' at …
