Home  >  Article  >  Backend Development  >  Detailed explanation of python output Fibonacci sequence

Detailed explanation of python output Fibonacci sequence

高洛峰
高洛峰Original
2017-03-10 14:03:238096browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn