I have a python numpy array: y = np.array([5.2,1]) . Now I want to change y[0] to 1: y[0] = 1
But Python output is: array([1., 1.])
Somehow it writes the integ