Question: Problem 13: Functions in PYTHON Create a function Ruler(n) that takes an integer n and creates a RECURSIVE design as follows. For Ruler(1), the output
Problem 13: Functions in PYTHON
Create a function Ruler(n) that takes an integer n and creates a RECURSIVE design as follows.
For Ruler(1), the output would be:
-
For Ruler(2), the output would be
- -- -
For Ruler(3) the output would be:
- -- - --- - -- -
For Ruler(4) the output would be:
- -- - --- - -- - ---- - -- - --- - -- -
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
