Having numpy array like that:
a = np.array([35,2,160,56,120,80,1,1,0,0,1])
I want to subtract custom value (for example, 5) from first element of the array. Basically it can be done like:a[0] - 5
But how can I apply this result to the initial array and replace the first value with the answer?
Thanks!