Question: Make a generator my_range( start , limit , increment = 1 ) That takes integers start , and limit along with an optional integer increment
Make agenerator
my_range(start, limit, increment=1)
That takes integersstart, andlimitalong with an optional integerincrementthat mimics the behavior of Python's range() function.Your generatorMAY NOTuse the Python range() function.
E.g.
list(my_range(-1, 3)) == [-1, 0, 1, 2] list(my_range(3, 7, 2)) == [3, 5]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
