[問題] 關於遞迴的回傳值

作者: feather2 (飛羽)   2020-07-01 15:42:08
小弟不才 最近才剛入門python 3
其中寫了兩個簡單的函式
第一個是使用遞迴方式 其中原本預期能回傳出做到第幾次(c)將終止
雖然有print 四次的c 但是回傳值消失
小弟寫了第二個使用while迴圈的方式 就能成功印出四次的c 並回傳出最後一次的c
實在想不出來是為什麼遞迴的方法return 不出來
請教各位高高手
def test(c, a, n):
c=c+1
b=(a+n)/2
if b<=(n/2+3):
print(c)
return c
else:
print(c)
test(c, b, n)
test(0, 10, 5) #print:1, 2, 3, 4
##############################
def test1(c, a, n):
t=0
while True:
t+=1
b=(a+n)/2
if b<=(n/2+3):
print(t)
return t
else:
print(t)
a=b
test1(0, 10, 5) #print: 1, 2, 3, 4;output: 4
作者: ddavid (謊言接線生)   2020-07-01 16:12:00
遞迴return只會回上一層啊,你遞迴else那邊test(c, b, n)又沒人接return值,最深層的4怎麼可能傳回最上層直覺上應該改成return test(c, b, n),我沒細看不知道有沒有其他bug
作者: feather2 (飛羽)   2020-07-01 16:55:00
懂了 感謝

Links booklink

Contact Us: admin [ a t ] ucptt.com