Question: using python previous program using recursion I have to use the program above as a reference to rewrite the code as create a module. Assignment
using python
previous program using recursion

I have to use the program above as a reference to rewrite the code as create a module.
Assignment 02: Creating Modules: Creating a Sequence Using Recursion: NOTE: Make sure and include comments in your program. At a minimum it should include the author's name and a short program description. You will lose points if you have no comments. For this assignment, I would like for you to rewrite the code from the Creating a Sequence Using Recursion (No While Loops or For Loops) and create a module for the following sequences: 1. Square Numbers 2. Fibonacci Numbers 3. Triangular Numbers 4. Hexagonal Numbers Also for this program, allow the user to: State which list to create State how many elements that they want in the list Allow the user to state the number that starts generating the Square Numbers and Triangular Numbers. Allow the user to decide if they would like to create a new sequence. Be sure to include comments with at least your name, and a brief description of the code. Below is the example run of the program. def fibonacci(n,current=1, prev=0): #if nis 0 if n
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
