gpt4 book ai didi

python - 返回列表中匹配条件的第一项

转载 作者:IT老高 更新时间:2023-10-28 20:50:06 24 4
gpt4 key购买 nike

我有一个功能。 matchCondition(a),它接受一个整数并返回 True 或 False。

我有一个包含 10 个整数的列表。我想返回列表中的第一项(与原始列表的顺序相同),其中 matchCondition 返回 True。

尽可能像 Python 一样。

最佳答案

next(x for x in lst if matchCondition(x)) 

应该可以,但是如果列表中没有任何元素匹配,它将引发 StopIteration。您可以通过向 next 提供第二个参数来抑制它:

next((x for x in lst if matchCondition(x)), None)

如果没有匹配,将返回 None

演示:

>>> next(x for x in range(10) if x == 7)  #This is a silly way to write 7 ...
7
>>> next(x for x in range(10) if x == 11)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
StopIteration
>>> next((x for x in range(10) if x == 7), None)
7
>>> print next((x for x in range(10) if x == 11), None)
None

最后,为了完整起见,如果你想要 all 列表中匹配的项目,这就是内置 filter 函数的用途:

all_matching = filter(matchCondition,lst)

在 python2.x 中,这返回一个列表,但在 python3.x 中,它返回一个可迭代对象。

关于python - 返回列表中匹配条件的第一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14366511/

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