Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
    
 
PREVIOUS NEXT
Tagged: #print #fibonacci #series #reverse #python
ADD COMMENT
Topic
Name
5+3 =