What will be the output of the following ?
import numpy as np
a=np.array([2,4,1])
b=a.copy()
a[1]=3
print(b)
Qus
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np a=np.array([2,4,1]) b=a.copy() a[1]=3 print(b)
A. [2 4 1]
B. [2 3 1]
C. [3 4 1]
D. [2 4 3]