find the minimum value in a list python code example
Example 1: python get min from array
>>> arr = [1, 3.14159, 1e100, -2.71828]
>>> min(arr)
-2.71828
Example 2: minimum in list python
c=[4, 10, 2, 57]
print(min(c))
# 2
Example 3: python find smallest value in list
stuff = [37, 7, 19, 29, 5, 13, 31, 17, 23, 11, 3, 2]
print(min(stuff))
# output = 2