NumPy - Broadcasting
Examine the following code:
What issue will arise when executing this code?
import numpy as np arr1 = np.ones((4,2)) arr2 = np.ones((2,4)) result = arr1 + arr2
What issue will arise when executing this code?
