I have the following list created from a sorted csv
list1 = sorted(csv1, key=operator.itemgetter(1))
I would actually like to sort the list
Sorting list of dicts using below will sort list in descending order on first column as salary and second column as age
d=[{'salary':123,'age':23},{'salary':123,'age':25}]
d=sorted(d, key=lambda i: (i['salary'], i['age']),reverse=True)
Output: [{'salary': 123, 'age': 25}, {'salary': 123, 'age': 23}]