gpt4 book ai didi

python - 如何根据任意条件函数过滤字典?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:36:59 27 4
gpt4 key购买 nike

我有一个点字典,说:

>>> points={'a':(3,4), 'b':(1,2), 'c':(5,5), 'd':(3,3)}

我想用 x 和 y 值小于 5 的所有点创建一个新字典,即点“a”、“b”和“d”。

根据the book ,每个字典都有items()函数,返回一个(key, pair)元组列表:

>>> points.items()
[('a', (3, 4)), ('c', (5, 5)), ('b', (1, 2)), ('d', (3, 3))]

所以我写了这个:

>>> 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]
...
>>> points_small
{'a': (3, 4), 'b': (1, 2), 'd': (3, 3)}

有没有更优雅的方式?我期待 Python 有一些 super 棒的 dictionary.filter(f) 函数...

最佳答案

您可以使用字典理解:

{k: v for k, v in points.items() if v[0] < 5 and v[1] < 5}

而在 Python 2 中,从 2.7 开始:

{k: v for k, v in points.iteritems() if v[0] < 5 and v[1] < 5}

关于python - 如何根据任意条件函数过滤字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56118327/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com