If I had a list of dictionaries:
[{'name':a, 'number':b, 'blah':c, 'swag':d},
{'name':a_1,'number':b_1,'blah':c_1,'swag':d_1},
{'name':a_2,'number':b_2,'blah':c_2,'swag':d_2}]
How would I print all the 'name' values in alphabetical order and the 'number' values in descending order? And let's say the 'a' values are strings, and the 'b' values are integers. How would I print all the 'name' values in alphabetical order and the 'number' values in descending order?