Report Bug
Qus :

What is the output of following code ?

a = np.array([[1,2,3],[4,5,6]])
print(a.shape)

Qus

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

a = np.array([[1,2,3],[4,5,6]])
print(a.shape)


A. (2,3)
B. (3,2)
C. (1,1)
D. none of these


Solution
A. (2,3)






Report Bug