Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表,我想对其进行排序。列表由每个具有两个元素的项目组成。我希望只对第二个元素进行排序。因此,我几乎可以肯定
L = [[4,2],[5,2]] sorted(L)
不会做这项工作。
如何进行?我得到了答案,但不明白什么可以适用于问题。
谢谢!
from operator import itemgetter sorted(L, key=itemgetter(1))
返回按的每个元素中的第二项L排序的排序列表。keyL
L
key