NumPy - Broadcasting
What will be the shape of the result after broadcasting in this code?
import numpy as np X = np.ones((4, 1, 3)) Y = np.ones((1, 5, 1)) Z = X + Y print(Z.shape)
