码迷,mamicode.com
首页 > 编程语言 > 详细

python 实现斐波那契数列

时间:2015-03-05 12:21:37      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

def fib(n):
    a,b=0,1
    while a<n:
        print(a,end=" ")
        a,b=b,a+b
    print()
    
    
fib(2000)
      

输出:

0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 

 

python 实现斐波那契数列

标签:

原文地址:http://www.cnblogs.com/nzyjlr/p/4315382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!