programming-examples/python/List/Python program to get a list, sorted in increasing order by the last element in each tuple from a given list of non-empty tuples.py

6 lines
170 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def last(n): return n[-1]
def sort_list_last(tuples):
return sorted(tuples, key=last)
print(sort_list_last([(2, 5), (1, 2), (4, 4), (2, 3), (2, 1)]))