Report Bug
Qus :

what will be output for the following code?

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

Qus

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

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



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


Solution
B. 1






Report Bug