+ 2
why??? I don't understand this code
def fibo(n): if (n==0): return 0 elif (n==1): return 1 else: return (fibo(n-2) + (fibo(n-1))) n = int(input("Number: ")) for n in range(0,n): print(fibo(n)
4 ответов
+ 4
Why what? Please ask a complete question
Un case you mean the error:
The closing ) of the print function is missing.
+ 3
It is called recursion and will be explained in lesson 68 of the Python Core course.
+ 1
i don't understand this code
0
thank you Lisa i understand
this is factorial