斐波那契数列

题目描述
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。

n<=39

python solution:

# -*- coding:utf-8 -*-
class Solution:
    def Fibonacci(self, n):
        if n<=1:
            return n
        a,b, = 0,1
        while n>1:
            n -= 1
            temp = a+b
            a = b
            b = temp
        return b
posted @ 2019-03-02 17:54  bernieloveslife  阅读(76)  评论(0编辑  收藏  举报