Question: Python recursion question 1. Write a recursive function recLessThan() that takes a an integer and prints a greater than symbol pattern using the character *.

Python recursion question
1. Write a recursive function recLessThan() that takes a an integer and prints a "greater than symbol pattern using the character *. The parameter represents the largest indent of the pattern. If n is 0 or negative the function doesn't print anything. The following shows several examples of patterns using different values of n. >>> recLess Than (3) * * * * * * >>> recLessThan (5) * * * * * * * * *
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
