mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
18 lines
243 B
Python
18 lines
243 B
Python
# generators and yield
|
|
|
|
def main():
|
|
def f():
|
|
print(123)
|
|
yield
|
|
print(456)
|
|
yield 2
|
|
print(789)
|
|
|
|
a = f()
|
|
print(a)
|
|
print(a.__next__())
|
|
print(a.__next__())
|
|
#print(a.__next__())
|
|
|
|
main()
|