What would this recursive function print if it is called with no parameters?
def count_recursive(n=1):
if n > 3:
return
print(n)
count_recursive(n + 1)
What would this recursive function print if it is called with no parameters?
def count_recursive(n=1):
if n > 3:
return
print(n)
count_recursive(n + 1)