我有一个功能.matchCondition(a)
,取整数并返回True或False.
我有一个10个整数的列表.我想返回列表中的第一个项目(与原始列表的顺序相同),matchCondition
返回True.
尽可能诡异.
mgi*_*son 47
next(x for x in lst if matchCondition(x))
Run Code Online (Sandbox Code Playgroud)
应该工作,但StopIteration
如果列表中没有任何元素匹配,它将会提升.你可以通过提供第二个参数来抑制它next
:
next((x for x in lst if matchCondition(x)), None)
Run Code Online (Sandbox Code Playgroud)
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
Run Code Online (Sandbox Code Playgroud)
最后,为了完整性,如果你想要列表中匹配的所有项目,那就是内置filter
函数的用途:
all_matching = filter(matchCondition,lst)
Run Code Online (Sandbox Code Playgroud)
在python2.x中,这将返回一个列表,但在python3.x中,它返回一个可迭代对象.
使用break
语句:
for x in lis:
if matchCondition(x):
print x
break #condition met now break out of the loop
Run Code Online (Sandbox Code Playgroud)
现在x
包含您想要的项目。
证明:
>>> for x in xrange(10):
....: if x==5:
....: break
....:
>>> x
>>> 5
Run Code Online (Sandbox Code Playgroud)