码迷,mamicode.com
首页 > 其他好文 > 详细

斐波那契数列

时间:2019-03-02 18:44:05      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:pytho   class   斐波那契   self   python   题目   return   开始   while   

题目描述
大家都知道斐波那契数列,现在要求输入一个整数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

斐波那契数列

标签:pytho   class   斐波那契   self   python   题目   return   开始   while   

原文地址:https://www.cnblogs.com/bernieloveslife/p/10422874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!