Answers for "python code to sort the lists using the first element of sublists"

3

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 code to sort the lists using the first element of sublists"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language