I read https://wiki.python.org/moin/HowTo/Sorting
>>> sorted(student_tuples, key=itemgetter(1, 0))
[('andrew', 14, 15), ('jane', 12, 10), (zach, 14, 12)]
I can sort in two ways but I want to sort in reverse order with the first parameter but not on the second so I get something like
[('andrew', 14, 15), ('zach', 14, 12), ('jane', 12, 10)]
How can I do that with the reverse=True parameter?
Currently if I use
>>> sorted(student_tuples, key=itemgetter(1, 0), reverse=True)
both of the sorting orders will be from the highest to lowest. I want only one to be from highest to lowest.