Report Bug
Qus :

What will be the output of the following ?

import numpy as np
arr=np.array([1,2,3])
print(arr.shape)

Qus

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

import numpy as np
arr=np.array([1,2,3])
print(arr.shape)


A. (3,)
B. (4,)
C. 1
D. 3


Solution
A. (3,)






Report Bug