Answers for "print fibonacci series in reverse in python"

1

print fibonacci series in reverse in python

# this is the fibonacci series by KV
n = int(input("enter the last number :"))

x = 1
while x < n+1:
    print(x)
    x = x+1
Posted by: Guest on June-12-2020

Code answers related to "print fibonacci series in reverse in python"

Python Answers by Framework

Browse Popular Code Answers by Language