Page 1 of 1

30. What is the expected output of the following code? def count (start): print (start, end=" ") if start > 0: count (st

Posted: Sun Jul 10, 2022 11:27 am
by answerhappygod
30. What is the expected output of the following code?
def count (start):
print (start, end="")
if start > 0:
count (start - 1)
count (3)
a. 3210
b. 123
c. 321
d. 0123