Question: Create a function (sublistInRange) that, given a list of floating point numbers, list, and two numbers (min and max), returns a list (or modify list)

Create a function (sublistInRange) that, given a list of floating point numbers, list, and two numbers (min and max), returns a list (or modify list) where the elements of the output list corresponds to the elements of list that are greater than or equal to min and less than or equal to max. Note: This function should not print the list, but return it. Example output for list = [1, 2, 3, 4, 5], min = 2, and max = 4: >>> sublistInRange([1,2,3,4,5], 2, 4) [2,3,4] Example output for list = [5, 8, 3, 21, 7, 4, 14], min = 4, and max = 14: >>> sublistInRange([5,8,3,21,7,4,14], 4, 14) [5,8,7,4,14]

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!