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.
並べ替えたいリストがあります。リストは、それぞれ 2 つの要素を持つ項目で構成されます。wrtを2番目の要素のみにソートしたい。したがって、私はほぼ確信しています
L = [[4,2],[5,2]] sorted(L)
仕事をしません。
どうやって進める?答えは出ましたが、何が問題に当てはまるのかわかりませんでした。
ありがとう!
from operator import itemgetter sorted(L, key=itemgetter(1))
の各要素の2番目の項目でLソートされたソート済みリストを返します。keyL
L
key