Python 递归实现斐波那契数列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 递归实现斐波那契数列相关的知识,希望对你有一定的参考价值。

Python 递归实现斐波那契数列


def fab(n):

    if n==1 or n==2:

        return 1

    else:

        return fab(n-1)+fab(n-2)

num=int(input(‘请输入数字:‘))

result=fab(num)

print("总共有%d个小兔子"% result)


本文出自 “13361631” 博客,请务必保留此出处http://13371631.blog.51cto.com/13361631/1983959

以上是关于Python 递归实现斐波那契数列的主要内容,如果未能解决你的问题,请参考以下文章

python递归与非递归实现斐波那契数列

python递归求斐波那契数列前10项

PythonPython实现斐波那契数列

python实现斐波那契数列

递归求斐波那契数列

使用Python实现斐波那契数列