Contact: aviboots(AT)netvision.net.il
41,381 questions
53,927 answers
573 users
lst = [[4, 3, 5], [7, 5, 8], [3, 1, 6], [5, 9, 3], [1, 4, 2], [6, 9, 1]] last_index = len(lst[0]) - 1 lst.sort(key=lambda x: x[last_index]) print(lst) ''' run: [[6, 9, 1], [1, 4, 2], [5, 9, 3], [4, 3, 5], [3, 1, 6], [7, 5, 8]] '''