top of page
Writer's pictureRajesh Singh

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:




Recent Posts

See All

Comments


bottom of page