Question: Functions Define and test a function myRange. This function should behave like Pythons standard rangefunction, with the required and optional arguments, but should return a

Functions

Define and test a function myRange. This function should behave like Pythons standard rangefunction, with the required and optional arguments, but should return a list.

Do not use the range function in your implementation!

Hints:

Study Pythons help on range to determine the names, positions, and what to do with your functions parameters.

Use a default value of None for the two optional parameters. If these parameters both equal None, then the function has been called with just the stop value. If just the third parameter equals None, then the function has been called with a start value as well. Thus, the first part of the functions code establishes what the values of the parameters are or should be. The rest of the code uses those values to build a list by counting up or down.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!