Answers for "python sort list of lists based on first element and on second if firsts are equal"

4

sort list of lists by first element

>>> lis = [[1,4,7],[3,6,9],[2,59,8]]
>>> sorted(lis, key=lambda x: x[0])
[[1, 4, 7], [2, 59, 8], [3, 6, 9]]
Posted by: Guest on October-25-2020

Code answers related to "python sort list of lists based on first element and on second if firsts are equal"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language