NumPy - Array Operations
The following code is intended to add two numpy arrays element-wise. What is the error?
import numpy as np x = np.array([1, 2, 3]) y = np.array([4, 5]) z = x + y print(z)
