How-To-Git-Started/fibonacci.py

13 lines
243 B
Python
Raw Normal View History

2020-01-08 13:45:39 +01:00
def fibonacci(n):
if n <= 0:
return [0]
sequence = [0, 1]
while len(sequence) <= n:
next_value = sequence[len(sequence) - 1] + sequence[len(sequence) - 2]
sequence.append(next_value)
return sequence
print(fibonacci(7))