斐波那契数列
斐波那契数列_牛客网
https://www.nowcoder.com/practice/c6c7742f5ba7442aada113136ddea0c3?tpId=13&tqId=11160&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
题目描述
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。
n<=39
def Fibonacci(self, n): # write code here res=[0,1,1,2] while len(res)<=n: res.append(res[-1]+res[-2]) return res[n]