__1__ foo(): for i in range(5): __2__ 2 * i + 1 __3__ = foo() for i in bar: print(i)
output: 1 3 5 7 9
Please fill in