In [9]:
# Vector addition

vec1 = np.array([[0],[7],[3]])
vec2 = np.array([[1],[2],[0]])

res = vec1 + vec2
print(res)
[[1]
 [9]
 [3]]