首页 > 编程 > Python > 正文

Python打印斐波拉契数列实例

2019-11-25 17:13:23
字体:
来源:转载
供稿:网友

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

#打印斐波拉契数列#!/usr/bin/pythondef 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程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表