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
30. What is the expected output of the following code? def count (start): print (start, end=" ") if start > 0: count (st
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am