2022-11-13 10:39:28 -08:00

9 lines
171 B
Python

>>> def bigger_than_10(numbers):
... for n in numbers:
... if n > 10:
... return n
... return None
...
>>> bigger_than_10(squares_list(11))
16