notas-tsfc/nats.py

7 lines
66 B
Python
Raw Normal View History

2023-02-16 01:10:02 +01:00
def nats(n):
yield n
yield from nats(n+1)
s=nats(1)