“Fibonacci Sequence Script Python” Kode Jawaban

Seri Fibonacci di Python

def iterativeFibonacci(n):
  fibList[0,1]
  for i in range(1, n+1):
    fibList.append(fibList[i] + fibList[i-1])
  return fibList[1:]

########################### Output ##################################

""" E.g. if n = 10, the output is --> [1,1,2,3,5,8,13,21,34,55] """
		
        
Gill Bates

Fibonacci Sequence Script Python

#Learnprogramo
Number = int(input("How many terms? "))
# first two terms
First_Value, Second_Value = 0, 1
i = 0
if Number <= 0:
print("Please enter a positive integer")
elif Number == 1:
print("Fibonacci sequence upto",Number,":")
print(First_Value)
else:
print("Fibonacci sequence:")
while i < Number:
print(First_Value)
Next = First_Value + Second_Value
# update values
First_Value = Second_Value
Second_Value = Next
i += 1
Gleaming Grasshopper

Jawaban yang mirip dengan “Fibonacci Sequence Script Python”

Pertanyaan yang mirip dengan “Fibonacci Sequence Script Python”

Lebih banyak jawaban terkait untuk “Fibonacci Sequence Script Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya