webvm/examples/python3/fibonacci.py
2022-01-31 22:00:49 +01:00

9 lines
329 B
Python

def fib():
a, b = 0, 1
while True: # First iteration:
yield a # yield 0 to start with and then
a, b = b, a + b # a will now be 1, and b will also be 1, (0 + 1)
for index, fibonacci_number in zip(range(100), fib()):
print('{i:3}: {f:3}'.format(i=index, f=fibonacci_number))