Получите первый элемент от итерабильного, который соответствует условию
next(x for x in the_iterable if x > 3)
next((x for x in the_iterable if x > 3), default_value)
GaL
next(x for x in the_iterable if x > 3)
next((x for x in the_iterable if x > 3), default_value)
a = []
item = next((x for x in a), None)