Answers for "how to find max value in array python"

5

find max value in list python

mylist = [1, 7, 3, 12, 5]

min_value = min(mylist)
max_value = max(mylist)
Posted by: Guest on April-22-2021
2

get biggest value in array python3

array = [1,2,3,100,4,5]

biggest = max(array)

print(biggest) # prints 100
Posted by: Guest on June-07-2020
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
1

find location of max value in python list

>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]
Posted by: Guest on October-14-2020

Code answers related to "how to find max value in array python"

Python Answers by Framework

Browse Popular Code Answers by Language