0
這裏是我的代碼:當我希望得到詮釋,但外部函數返回無
def fibonacci(t0, t1, b, n):
t2 = t1**2 + t0
t0 = t1
t1 = t2
b += 1
if (n > b):
fibonacci(t0, t1, b, n)
else:
return t2
...(定義T0,T1,B,N) FB =斐波納契(T0,T1,B ,n)
但fb =無。爲什麼t2不返回?
'如果(N> B): 返回斐波納契(T0,T1,B,N)' – inspectorG4dget