How to sort a list of lists by a specific index of the inner list?

后端 未结 11 2502
醉酒成梦
醉酒成梦 2020-11-22 10:39

I have a list of lists. For example,

[
[0,1,\'f\'],
[4,2,\'t\'],
[9,4,\'afsd\']
]

If I wanted to sort the outer list by the string field o

11条回答
  •  青春惊慌失措
    2020-11-22 11:08

    array.sort(key = lambda x:x[1])
    

    You can easily sort using this snippet, where 1 is the index of the element.

提交回复
热议问题