Answers for "how to find minimum and maximum value in array in python"

1

maximum and minimum value of array python

list1 = [2,8,1,2,7,12,10]
min_val = min(list1)  #Finds the minimum value using the built-in python function
max_val = max(list1)  #Finds the maximum value using the built-in python function
Posted by: Guest on May-28-2021
0

pyton get minimum value of array

>>> darr = [1, 3.14159, 1e100, -2.71828]
>>> min(darr)
-2.71828
Posted by: Guest on December-14-2021

Code answers related to "how to find minimum and maximum value in array in python"

Python Answers by Framework

Browse Popular Code Answers by Language