Python

Python Program to Print the Fibonacci sequence2 min read

Write a progmra to Print the Fibonacci sequence in Python

Code:




This Python program takes an input number from the user and displays the Fibonacci sequence up to the n-th term, where n is the input number. The Fibonacci sequence is a series of numbers in which each number is the sum of the two preceding ones, usually starting with 0 and 1.

The program starts by asking the user to input a number, which is stored as an integer in the variable “nterms”.

Then, the program uses a while loop to iterate through the number of terms provided by the user, starting from the first two terms of the Fibonacci sequence, which are 0 and 1. On each iteration, it calculates the next term of the sequence as the sum of the current term and the previous term. It prints the current term and a comma to the output.

It checks if the input number is less than or equal to 0, if so it prints “Please enter a positive integer” and if the input number is 1, it prints only the first term of the Fibonacci sequence.

The output will be a list of integers which are the Fibonacci sequence up to the n-th term, where n is the input number.

Leave a Comment