Python的方式由内部列表的最后一个项目列表的列表进行排序列表、方式、项目、Python

2023-09-11 02:30:21 作者:记忆边缘

我有这样一个名单

  [X,Y,1],[W,U,4],[M,N,3] ... [P,Q,5]
 

我所需要的外部列表由内部列表的第三次(最后一次)的元素进行排序,所期望的结果将是:

  [X,Y,1],[M,N,3],[W,U,4] ... [P,Q,5]
 

什么是实现这一目标的最佳方式是什么?

解决方案

  my_list.sort(键=拉姆达X:X [-1])
 
Python list列表怎样排序

  my_list.sort(键= operator.itemgetter(-1))
 

第二个选项是稍快。

I have a list like this

[[x,y,1],[w,u,4],[m,n,3] ... [p,q,5]]

I need to sort the outer list by the third (last) element of the inner list, the desired result would be:

[[x,y,1],[m,n,3],[w,u,4] ... [p,q,5]]

What's the best way to achieve this?

解决方案

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

or

my_list.sort(key=operator.itemgetter(-1))

The second option is slightly faster.