剑指offer-07
题目描述
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。
n<=39
1 def Fibonacci( n): 2 # write code here 3 if n == 0: 4 return 0 5 if n == 1: 6 return 1 7 a = 0; b = 1 8 if n > 1: 9 while n - 1: 10 c = a + b 11 a, b = b, c 12 n -=1 13 return c