Answers for "sort by first element then second in python"

2

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)]
Posted by: Guest on April-30-2020
0

Sort python list by first element

li = [[1,4,7],[3,6,9],[2,59,8]]
li.sort(key=lambda x: int(x[0]))
Posted by: Guest on June-29-2021
0

sort first element reverse sort second python

>>> sorted(lista, key=lambda x: (-x[0], x[1]))
[(485, 'Elizabeth'), (485, 'Matthew'), (390, 'Jayden'), (207, 'Natalie'), (144, 'Chloe'), (51, 'Elijah')]
Posted by: Guest on March-31-2021

Code answers related to "sort by first element then second in python"

Python Answers by Framework

Browse Popular Code Answers by Language