I have a list which looks like this:
some_list = [{'id':1, 'name':'Steve', 'age':23}, {'id':2, 'name':'John', 'age':17}, {'id':3, 'name':'Matt', 'age':31}]
I would like to sort the list my the name value in the dictionary. So Instead of the above order, it would be John then Matt then Steve.
How would I go about this? Thanks.