Answers for "find element in list that matches a condition"

0

find element in list that matches a condition

#In Python 2.6 or newer:

#If you want StopIteration to be raised if no matching element is found:
next(x for x in the_iterable if x > 3)
#If you want default_value (e.g. None) to be returned instead:
next((x for x in the_iterable if x > 3), default_value)
Posted by: Guest on August-25-2021

Code answers related to "find element in list that matches a condition"

Python Answers by Framework

Browse Popular Code Answers by Language