x = np.arange(4)
x
#Out:array([0, 1, 2, 3])
scalar addition is element wise
x+10
#Out: array([10, 11, 12, 13])
scalar multiplication is element wise
x*2
#Out: array([0, 2, 4, 6])
array addition is element wise
x+x
#Out: array([0, 2, 4, 6])
array multiplication is element wise
x...