菜鸟学Python
Python语言: Codee#2349701 '''
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]