from numpy import array

a = array([1,2,3,4],int)

b = 2*a

print(a)
print(b)

print(a*b)