summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/cython_tutorial/fib.pyx
blob: 473719cb3ee673488a49f163319c5cfb41813bf2 (plain)
1
2
3
4
5
6
7
8
9
10
from __future__ import print_function

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