Question: write a recursive function that has one parameter which is an integer value called n the function prints n number of asterisks do not us
write a recursive function that has one parameter which is an integer value called n
the function prints n number of asterisks
do not us any loops
def aster(n):
print(aster(5))
*****
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
