Home >Backend Development >Python Tutorial >Python打印斐波拉契数列实例

Python打印斐波拉契数列实例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 11:13:071968browse

本文实例讲述了Python打印斐波拉契数列的方法。分享给大家供大家参考。具体实现方法如下:

#打印斐波拉契数列
#!/usr/bin/python
def feibolaqi(n):
  if n == 0 or n == 1:
    return n
  else:
    return feibolaqi(n-1) + feibolaqi(n-2)
num = int(raw_input('please input a int:'))
if num >= 0:
  print 'feibolaqi(%d) is %d' % (num,feibolaqi(num))
else:
  print 'input is wrong'

希望本文所述对大家的Python程序设计有所帮助。

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