a_list = [1, 2, 3] position_of_three = a_list.index(3) print(position_of_three)
index = np.where(oneD_array == 2)