q2009a06z22 发表于 2017-5-4 08:59:31

菜鸟学Python

  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)
页: [1]
查看完整版本: 菜鸟学Python