micropython/tests/basics/generator_send.py
2014-01-26 20:56:08 +02:00

16 lines
201 B
Python

def f():
n = 0
while True:
n = yield n + 1
print(n)
g = f()
try:
g.send(1)
except TypeError:
print("caught")
print(g.send(None))
print(g.send(100))
print(g.send(200))