forked from tdwojak/Python2017
13 lines
247 B
Python
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) |