function to find minimum value in an array in python code example
Example 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
Example 2: how to find min value in array in python
use sort and return first element