Files

6 lines
122 B
Python

def f(xs):
found = False
<selection>for x in xs:
yield x
found = True</selection>
print(found)