Question: IN PYTHON b. Write a recursive function that accepts an integer argument, n, and prints the numbers 1 through n. The list of the numbers
IN PYTHON
b. Write a recursive function that accepts an integer argument, n, and prints the numbers 1 through n. The list of the numbers should be separated by commas, as shown in the sample output.
sample output:
How many numbers to display? 21 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21
c. Write the code in two alternative ways to achieve the same output.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
