Classificando-a-python-list por dois campos
sorted_list = sorted(list, key=lambda x: (x[0], -x[1]))
Inquisitive Ibis
sorted_list = sorted(list, key=lambda x: (x[0], -x[1]))