Report Bug
Qus :

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)

Qus

निम्नलिखित का आउटपुट क्या होगा?

import numpy as np
a=np.array([2,4,1])
b=np.array([3,5])
c=a+b
print(c)


A. [2 4 1 3 5 ]
B. [5 9 1]
C. 15
D. ValueError


Solution
D. ValueError



Explanation

ValueError: operands could not be broadcast together with shapes (3,) (2,) 




Report Bug