10 points Online Editor Link (Fork this): LINK Alternatively…
10 points Online Editor Link (Fork this): LINK Alternatively, you can also use the editor here: LINK Write your own implementation of Python’s built-in my_range(start, end) function. Call your function my_range. Your function should return the numbers in a list. The list should include start but exclude end. You may not use Python’s built-in range function. You may assume: The arguments to the function will be two integers The end may be smaller than start (in which case the function should return an empty list) Example: my_range(1, 10) #should return my_range(11, 12) #should return my_range(10, 1) #should return