Answers for "python sort 2d array"

4

sort by index 2d array python

a = [[9, 9, 2], [9, 9, 3], [9, 9, 8], [9, 9, 4], [9, 9, 1], [9, 9, 5]]

b = sorted(a, key=lambda a:a[2])

#b contains the following arrays, sorted by their second index:
[[9, 9, 1], [9, 9, 2], [9, 9, 3], [9, 9, 4], [9, 9, 5], [9, 9, 8]]
Posted by: Guest on June-16-2020
1

python order 2d array by secode element

sorted(arr, key=lambda x: x[1])
Posted by: Guest on June-18-2020
0

python sort a 2d array by custom function

>>> a = [
     [12, 18, 6, 3], 
     [ 4,  3, 1, 2], 
     [15,  8, 9, 6]
]
>>> a.sort(key=lambda x: x[1])
>>> a
[[4,  3,  1, 2], 
 [15, 8,  9, 6], 
 [12, 18, 6, 3]]
Posted by: Guest on October-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language