`
ay_guobo
  • 浏览: 113858 次
  • 性别: Icon_minigender_1
  • 来自: 札幌
社区版块
存档分类
最新评论

菜鸟学Python - 斐波那契数列(Fibonacci)

阅读更多

Python语言Codee#23497
01 '''
02 Created on 2011-10-25
03 
04 @author: Guo
05 '''
06 #-*- encoding:UTF-8 -*- 
07 
08 def fib(n): # return Fibonacci series up to n
09     result = []
10     a, b = 0, 1
11    
12     FibonacciUptoNumer = int(raw_input('Please input a Fibonacci Series up to Number : '))
13     n =  FibonacciUptoNumer
14     while b < n:
15         result.append(b)
16         a, b = b, a+b
17     return result
18 
19 print fib(1000)

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics