In a multi-dimensional array created using numpy in python like
matrix=np.array[[0,0,0,0,0], [0,0,0,0,1], [0,0,0,0,0], [0,0,0,0,0], [0,0,0,0,0]]
if we were to treat it as matrix. Is there any way to find the row number and column number of element '1' or any other specific element inside the matrix?