In the following array there are two maximum values 5 and 5. np.argmax command returns the index of first maximum value. But I want to get the index of all maximum values in array using np.argmax. How I can do that?
`a= np.array([1,2,5,5,0,3])
b= np.argmax(a)
print(b)`