NumPy - Broadcasting
What will be the output of this code?
import numpy as np x = np.array([[1, 2, 3], [4, 5, 6]]) y = np.array([10, 20, 30]) print(x + y)
