Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
lst = [[4, 3], [7, 5], [3, 1], [5, 9], [1, 4], [6, 9]] lst.sort(reverse=True) print(lst) ''' run: [[7, 5], [6, 9], [5, 9], [4, 3], [3, 1], [1, 4]] '''