读书人

初学者学Python - 斐波那契数列(Fibo

发布时间: 2012-10-08 19:54:56 作者: rapoo

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

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)

读书人网 >perl python

热点推荐