Question: In python. Write a function that takes as input a single parameter storing a list of integers and returns the minimum and maximum values in
In python.
Write a function that takes as input a single parameter storing a list of integers and returns the minimum and maximum values in the list as a tuple. The first element in the tuple should be the minimum value and the second element should be the maximum value. For example, if the input is the list [0,3,-1,10] then your function should return the tuple (-1,10)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
