Write a program that prints the Fibonacci Sequence from the 5th till the 15th element of the sequence. How should i start from the 5th one, which is '3'? here is my code
def fibonacci_nums(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("First 15 Fibonacci numbers:")
print(fibonacci_nums(15))
sequence = [2, 3]3, and especially not'3'.fib(0)=0orfib(0)=1this is not a straight forward assumption by a long shot, and if you have a particularly strong opinion on that it probably belongs here: stackoverflow.com/questions/1451170/…