how to get index of smallest item in list python code example
Example 1: find the index of minimum element in a list python
# function to find minimum and maximum position in list
def minimum(a, n):
# inbuilt function to find the position of minimum
minpos = a.index(min(a))
# inbuilt function to find the position of maximum
maxpos = a.index(max(a))
# printing the position
print "The maximum is at position", maxpos + 1
print "The minimum is at position", minpos + 1
Example 2: python find smallest value in list
stuff = [37, 7, 19, 29, 5, 13, 31, 17, 23, 11, 3, 2]
print(min(stuff))
# output = 2