Answers for "max number array 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

Python Answers by Framework

Browse Popular Code Answers by Language