Answers for "maximum in an array python"

3

max in a list python

li=[0,70,7,89]
max(li)
#gives the max value 89
Posted by: Guest on September-12-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

Code answers related to "maximum in an array python"

Python Answers by Framework

Browse Popular Code Answers by Language