Today we will learn the Fibonacci Series in Python and also the Fibonacci Series program in python using different loops and user-defined functions. But, before starting you must have knowledge of the Fibonacci Series. So, we will learn it first.

What is Fibonacci Series?

Once there lived a man in the Republic of Pisa named Leonardo Pisano Bogollo. He was the bravest mathematician among western countries. His nickname was Fibonacci which means “Son of Bonacci”. So, this series of numbers was named as Fibonacci Series. The Fibonacci Series is a never-ending Sequence where the next upcoming term is the addition of the previous two terms. The Fibonacci Series starts with 0,1…

Fibonacci Series: 0,1,1,2,3,5,8,13,21 and so on.

In the above example, you will observe that the series is starting with 0,1 and the third number is 1 because of the addition of the first two numbers is 1. The fourth number is 2 because the addition of the second and third number is 2 i.e 1+1=2. This sequence of addition goes on continuously. So, this sequence is called as Fibonacci Series.

Fibonacci Series Algorithm:

1st Step: Take an integer variable X, Y and Z

2nd Step: Set X=0 and Y=0.

3rd Step: Display X and Y.

4th Step: Z=X+Y.

5th Step: Display Z.

6th Step: Start X=Y, Y=Z.

7th Step: Repeat from 4-6, for n times.

Fibonacci Spiral

The Fibonacci Spiral is a type of spiral which is built by constructing the arcs which connect the points of the square by taking the help of the Fibonacci Sequence. These are assembled in spiral patterns.

fibonacci series in python

There are different methods to print Fibonacci Series we will see that methods one by one.

Fibonacci Series in Python up to Certain Number

In this program, we will ask the user to enter the number up to which the user wants to print the series.

#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

Output:

fibonacci series in python
fibonacci series in python

In the above program we’ve declared four variables i.e Number, First_Value, Second_Value, i.

Explanation:

Consider the value i=0, Number=5, First_Value=0, Second_Value=1.

1st Iteration: the while condition(0<5) returns TRUE so the while statement will start executing. We have used the if-else statement and condition if(0<=1) returns TRUE. So, Next=0 and then if statement block will exit. At last, i will increment.

2nd Iteration: the while condition(1<5) returns TRUE so the while statement will start executing. The condition if(1<=1) returns TRUE. So, Next=1 and then if statement block will exit. At last, i will increment to 1.

3rd Iteration: the while condition(2<5) returns TRUE and if(2<=1) returns FALSE so else statement will start executing. Next=First_Value+Second_Value=0+1=1 and the First_Value=Second_Value=1. So, Second_Value=Next=1 and i is incremented by 1.

4th Iteration: the while condition(3<5) returns TRUE and if(3<=1) returns FALSE so else statement will start executing. Next=First_Value+Second_Value=1+1=2 and the First_Value=Second_Value=1. So, Second_Value=Next=2 and i is incremented to 4.

5th Iteration: the while condition(4<5) returns TRUE and if(4<=1) returns FALSE so else statement will start executing. Next=First_Value+Second_Value=1+2=3 and the First_Value=Second_Value=2. So, Second_Value=Next=3 and i is incremented to 5.

6th Iteration: the while condition(5<5) returns FALSE and the program is exited. And the final output is 0 1 1 2 3.

Fibonacci Series in Python using Recursion

Recursion means calling the function itself directly or indirectly.

def fibo_rec(n):
    if n == 1:
        return [0]
    elif n == 2:
        return [0,1]
    else:
        x = fibo_rec(n-1)
        # the new element the sum of the last two elements
        x.append(sum(x[:-3:-1]))
        return x
x=fibo_rec(5)
print(x)

Output:

fibonacci series program in python

Explanation:

In the above program, we use the recursion for generating the Fibonacci series. The function fibo_rec is called recursively until we get the proper output. In the program, we check whether the number n is 0 or 1. If yes then we return the value of the n and if not then we call fibo_rec with the values n-1 and n-2.

Using Dynamic Programming Approach

The Dynamic Programming Approach is nothing but similar to the divide and conquer method in the data structure. In this method, the problem is divided into smaller parts and their results can be reused. Generally, this approach is used for the optimization of the program.

Steps for Dynamic Approach:

  • First initialize the array ar of size n to 0.
  • if n=0 or 1 then return 1.
  • else initialize ar[0] and ar[1] to 1.
  • Now run the for loop in the range 2, n.
  • Compute the value ar[i]=ar[i-1]+ar[i-2].
  • Finally we get the array upto the sequence n.
#Learnprogramo
ar = [0, 1]
def fibo(n):
  if n <= 0:
	print("Incorrect input")
  elif n <= len(ar):
	return ar[n - 1]
  else:
	temp = fibo(n - 1) + fibo(n - 2)
	ar.append(temp)
	return temp
print(fibo(9))

Output:

fibonacci in python using dynamic approach

So, in this way we have learned the different methods to generate the Fibonacci Series in Python.

Also Read:

Fibonacci Series Program using c