0
What will be the result of this file?
def fib (x): if x==0 or x==1: return 1 else: return fib (x-1) + fib (x-2) print (fib (4))
6 Respostas
+ 1
The answer is 5
0
אני לאט הבנתי איך זה נהיה אפשר דרך
תשובה ללא דרך זה לא תשובה
0
Answer without a way is not an answer !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
It doesn't respect the sotware
0
Answer without a way is not an answer !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
אבל בכל אופן תודה למרות שלא הבנתי כלום
0
מה שאני יודעת זה בזכות ה google translate
0
5