カスタム条件に基づいて辞書を効率的に整理するにはどうすればよいでしょうか?

Linda Hamilton
リリース: 2024-11-15 01:29:02
オリジナル
488 人が閲覧しました

How can you efficiently prune a dictionary based on a custom condition?

Pruning a Dictionary Based on a Custom Condition

When working with dictionaries, it is often useful to refine their contents based on specified criteria. Suppose you have a dictionary of points represented as tuples, and you're interested in extracting only points where both the x and y coordinates are less than 5.

Traditionally, one approach involves iterating over the dictionary items using a list comprehension:

points_small = {}
for item in [i for i in points.items() if i[1][0] < 5 and i[1][1] < 5]:
    points_small[item[0]] = item[1]
ログイン後にコピー

While this method is functional, there is a more succinct solution using a dictionary comprehension:

points_small = {k: v for k, v in points.items() if v[0] < 5 and v[1] < 5}
ログイン後にコピー

This concise expression generates a new dictionary where keys and values satisfy the specified condition. Similarly, in Python 2.7 and above, the following syntax can be used:

points_small = {k: v for k, v in points.iteritems() if v[0] < 5 and v[1] < 5}
ログイン後にコピー

By employing dictionary comprehensions, you gain an elegant and efficient means to filter dictionaries based on arbitrary conditions, providing a more streamlined approach to data manipulation.

以上がカスタム条件に基づいて辞書を効率的に整理するにはどうすればよいでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート