Question: Can someone please explain how we got 2 1 2 3 as an output when we called the function with 2 def test(n): if n==0:
Can someone please explain how we got 2 1 2 3 as an output when we called the function with 2
def test(n): if n==0: return print(n) test(n-1) n+=1 print(n) return test(2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
