Home >>Python Programs >Python program to print the fibonacci series
In this example, we will see a Python program to print the Fibonacci sequence. The Fibonacci sequence defines a series of numbers where the next number is found by adding up the two numbers just before it.
Example :
nterms = int(input("How many terms you want? "))
# first two terms
n1 = 0
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