1
0
forked from tdwojak/Python2017
Python2017/labs03/task02.py
2018-01-13 19:06:04 +01:00

13 lines
247 B
Python

def fibonacci(n):
"""Fibonacci numbers generator, first n"""
a, b, counter = 0, 1, 0
while True:
if (counter > n): return
yield a
a, b = b, a + b
counter += 1
f = fibonacci(5)
for x in f:
print (x)