Report Bug
Qus :

What is the output of the following code ?

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

Qus

निम्नलिखित कोड का परिणाम क्या है ?

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


A. (2,3)
B. (3,1)
C. (1,3)
D. None of These


Solution
C. (1,3)






Report Bug