Not so efficient (I'm a beginner in Python), but works fine as well. The idx will just hold the last index of minimum element. I think that M.Keijzers method is the best.
array = [1,2,3,4,1,2]
min_val = min(array)
for i in range(len(array)):
if array[i] == min_val:
idx = i
print idx