What will be the output of the following ?
import numpy as np a=np.array([2,4,1]) b=np.array([3,5]) c=a+b print(c)
निम्नलिखित का आउटपुट क्या होगा?
ValueError: operands could not be broadcast together with shapes (3,) (2,)