The Fibonacci numbers are the sequence of numbers
defined by the linear recurrence equation
 with  and 
So in simple terms a method to compute fibonacci number for nth place looks like this
if n == 0 or n ==1:
return n
else:
return fibonacci(n-1)+fibonacci(n-2)
here is quick test
print i," : ",fibonacci(i)
#This will print
0 : 0
1 : 1
2 : 1
3 : 2
4 : 3
5 : 5
6 : 8
7 : 13
8 : 21
9 : 34
or an inline method like this print [fibonacci(i) for i in range(11)] will result