Python2017/labs03/task02.py
2017-12-02 15:48:24 +01:00

10 lines
177 B
Python

# lab03, task02
def fibN(n):
prev, current = 0, 1
for n in range(n):
yield prev
prev, current = current, prev + current
for x in fibN(10):
print(x)