0
Python 3 print issue
def fib(n): if n==1 or n==2: return 1 return fib(n-1)+fib(n-2) print (fib(10)) when run it, it shows no output
1 Answer
0
can you correct meïŒ
def fib(n): if n==1 or n==2: return 1 return fib(n-1)+fib(n-2) print (fib(10)) when run it, it shows no output