Files
leaningtech--webvm/examples/python3/fibonacci.py
T
2026-07-13 12:22:17 +08:00

10 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))