pyhton sort list of tuples by first value code example
Example 1: sort tuple by first element python
a = [(5,8), (3,4), (9,7)]
#sort by first element in tuple
result = sorted(a, key=lambda tup: tup[0])
#OR to do inplace sort:
a.sorted(key = lambda tup: tup[0])
# output
[(3, 4), (5, 8), (9, 7)]
Example 2: pyhon sort a list of tuples
sorted([('abc', 121),('abc', 231),('abc', 148), ('abc',221)], key=lambda x: x[1])