ホームページ  >  記事  >  バックエンド開発  >  内部リスト要素に基づいてネストされたリストを並べ替える方法

内部リスト要素に基づいてネストされたリストを並べ替える方法

Patricia Arquette
Patricia Arquetteオリジナル
2024-11-15 08:23:02851ブラウズ

How to Sort a Nested List Based on Inner List Elements?

Sorting Nested Lists Based on Inner List Elements

Nested lists are ubiquitous in programming, and handling them requires adept data manipulation techniques. One such scenario involves sorting the outer list based on specific indices within the inner lists. Fortunately, the following solutions offer effective ways to tackle this challenge:

Using itemgetter

The itemgetter function from the operator module provides a concise solution. It allows you to extract specific elements from each inner list and sort the outer list based on those extracted elements.

from operator import itemgetter

L = [[0, 1, 'f'], [4, 2, 't'], [9, 4, 'afsd']]
sorted(L, key=itemgetter(2))
# [[9, 4, 'afsd'], [0, 1, 'f'], [4, 2, 't']]

Using a lambda function

Although slightly less efficient in this simple case, a lambda function can also accomplish the sorting:

sorted(L, key=lambda x: x[2])
# [[9, 4, 'afsd'], [0, 1, 'f'], [4, 2, 't']]

By leveraging itemgetter or a lambda function, you can effectively sort nested lists based on specific indices of their inner elements, thereby enhancing your data processing capabilities.

以上が内部リスト要素に基づいてネストされたリストを並べ替える方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。