ShriRam Changed status to publish August 18, 2023
nterms = int(input(“How many terms you want? “))
# first two terms
n1 = 1
n2 = 1
count = 2
# check if the number of terms is valid
if nterms <= 0:
print("Plese enter a positive integer")
elif nterms == 1:
print("Fibonacci sequence:")
print(n1)
else:
print("Fibonacci sequence:")
print(n1, ",", n2, end=', ')
while count < nterms:
nth = n1 + n2
print(nth, end=' , ')
# update values
n1 = n2
n2 = nth
count += 1
ShriRam Changed status to publish August 18, 2023