Python で次のタプルのリストを並べ替える必要があります。
ListOfTuples = [('10', '2010 Jan 1;', 'Rapoport AM', 'Role of antiepileptic drugs as preventive agents for migraine', '20030417'), ('21', '2009 Nov;', 'Johannessen SI', 'Antiepilepticdrugs in epilepsy and other disorders--a population-based study of prescriptions', '19679449'),...]
私の目的は、降順(listOfTuples[2]) と昇順の作成者 (listOfTuples[2]) で並べることです。
sorted(result, key = lambda item: (item[1], item[2]))
しかし、うまくいきません。ソートの安定性を得るにはどうすればよいですか?