Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of the following Python statements?
defrecurse(a): if (a == 1): print(a) else: recurse(a)
def
recurse(a):
recurse(1)
0
RuntimeError: maximum recursion depth exceeded
1
no output
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!