logo CodeStepByStep logo

print_stars

Language/Type: Python recursion

Write a recursive function named print_stars that accepts an integer parameter n and prints n occurrences of the "*" character to the console. For example, the call of print_stars(5) should print ***** . Do not use loops or auxiliary data structures; solve the problem recursively. You may assume that the value passed is non-negative.

Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.