#byDurdaneh#python
What is the result of this code?
def fib(x): if x == 0 or x == 1: return 1 else: return fib(x-1) + fib(x-2) print(fib(4))
What is the result of this code?
def fib(x): if x == 0 or x == 1: return 1 else: return fib(x-1) + fib(x-2) print(fib(4))
Anonymous Quiz
18%
7
48%
5
14%
6
20%
0