top of page

Python Program to Print the Fibonacci sequence

Updated: May 28, 2021


Python Program to Print the Fibonacci sequence Using While Loop


n = int(input("Enter the number for Fibonacci sequence : ")) a, b = 0, 1 i = 0 if n <= 0: print("Enter a positive integer") elif n == 1: print("Fibonacci sequence: ") print(a) else: while i < n: print(a) c = a + b a = b b = c i += 1


Output:

Enter the number for Fibonacci sequence : 4

0 1 1 2

Second Method to print Fabonacci series :

n = int(input("Enter the positive number for Fibonacci sequence: ")) a, b = 0, 1 i = 0

while i < n: print(a) c = a + b a = b b = c i += 1

Output:

Enter the positive number for Fibonacci sequence: 4

0 1 1 2

To print Fabonacci sequence Video by Rajesh Sir:




92 views0 comments

Recent Posts

See All

Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument. This program is most for O Level Practical Exam so read it care

This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1]) print(x) print("most frequent value in the list:") print(np.

bottom of page