Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

get the first item from an iterable that matches a condition

next(x for x in the_iterable if x > 3)
next((x for x in the_iterable if x > 3), default_value)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #item #iterable #matches #condition
ADD COMMENT
Topic
Name
3+8 =