Home > Article > Backend Development > Detailed explanation of python output Fibonacci sequence
This article explains in detail python output Fibonacci sequence
def recur_fibo(n): """递归函数 输出斐波那契数列""" if n <= 1: return n else: return(recur_fibo(n-1) + recur_fibo(n-2)) # 获取输入 nterms = int(input("您要输出几项? ")) # 检查输入的数字是否正确 if nterms <= 0: print("输入正数") else: print("斐波那契数列:") for i in range(nterms): print(recur_fibo(i))rrree
The above is the detailed content of Detailed explanation of python output Fibonacci sequence. For more information, please follow other related articles on the PHP Chinese website!