DEBSOURCES
Skip Quicknav
sources / cython / 3.1.6%2Bdfsg-2 / docs / examples / tutorial / cython_tutorial / fibonacci.py
12345678
def fib(n): """Print the Fibonacci series up to n.""" a, b = 0, 1 while b < n: print(b, end=' ') a, b = b, a + b print()