MCPcopy Create free account
hub / github.com/ActiveState/code / fib

Function fib

recipes/Python/66316_Fibonacci_sequence_using/recipe-66316.py:4–10  ·  view source on GitHub ↗

unbounded generator, creates Fibonacci sequence

()

Source from the content-addressed store, hash-verified

2
3# needs Python 2.2 or above!
4def fib():
5 "unbounded generator, creates Fibonacci sequence"
6 x = 0
7 y = 1
8 while 1:
9 x, y = y, x + y
10 yield x
11
12
13if __name__ == "__main__":

Callers 2

recipe-66316.pyFile · 0.70
recipe-67677.pyFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected