码迷,mamicode.com
首页 > 其他好文 > 详细

斐波纳契数列

时间:2017-12-25 00:44:26      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:span   斐波那契   pen   for   简单   数列   while   nbsp   color   

# -*- coding:utf-8 -*-

#0 1 1 2 3 5 8 13 21 34 55...
#简单的斐波那契数列
s = 20
def fb(s):
    f = []
    a = 0
    b = 1
    while len(f) < s:
        f.append(b)
        b, a = a + b, b
    print(f)
fb(s)

#高级的斐波那契数列
s = 10
def recur_febo(n):
    if n <= 1:
        return n
    else:
        return (recur_febo(n-1)) + recur_febo(n-2)

for i in range(s):
    print(recur_febo(i))

 

斐波纳契数列

标签:span   斐波那契   pen   for   简单   数列   while   nbsp   color   

原文地址:http://www.cnblogs.com/GhostCatcg/p/8099571.html

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