📜  在 python 代码示例中反向打印斐波那契数列

📅  最后修改于: 2022-03-11 14:45:31.576000             🧑  作者: Mango

代码示例1
# 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