gpt4 book ai didi

python - 如何为 Python itertools.ifilter 函数提供额外的参数?

转载 作者:太空宇宙 更新时间:2023-11-04 07:47:55 26 4
gpt4 key购买 nike

在 python 中我有以下函数:

def is_a_nice_element(element, parameter):
#do something
return True or False

现在我想用这个函数作为谓词来过滤一个列表,给一个固定的参数。 Python 有 itertools.ifilter 函数,但我不知道如何传递参数。这可能吗?如果没有,我该如何解决这个问题?

最佳答案

我喜欢functools.partiallambda 好得多。

itertools.ifilter( partial(is_a_nice_element, parameter=X), iterable )

关于python - 如何为 Python itertools.ifilter 函数提供额外的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2483118/

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