lst_tuples = [
(7, 2, 'python'),
(8, 3, 'c'),
(3, 5, 'c++'),
(4, 1, 'c#'),
(3, 2, 'java'),
(7, 1, 'go'),
(1, 2, 'rust'),
]
# Sort by column 0, then by column 1
sorted_lst_tuples = sorted(lst_tuples, key=lambda x: (x[0], x[1]))
for element in sorted_lst_tuples:
print(element)
'''
run:
(1, 2, 'rust')
(3, 2, 'java')
(3, 5, 'c++')
(4, 1, 'c#')
(7, 1, 'go')
(7, 2, 'python')
(8, 3, 'c')
'''