Report Bug
Qus :

What will be the output of the following code?

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

Qus

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

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


A. 1
B. 2
C. 3
D. 0


Solution
A. 1






Report Bug