forked from Workshops/How-To-Git-Started
13 lines
243 B
Python
13 lines
243 B
Python
|
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))
|