How to calculate the N fibonacci number in Python

1 Answer

0 votes
def fibonacci(n):
    a, b = 0, 1
    for i in range(n):
        a, b = b, a + b
    return a

print(fibonacci(8))
print(fibonacci(10))
print(fibonacci(12))


'''
run:

21
55
144

'''

 



answered Feb 7, 2018 by avibootz

Related questions

...