What will be output for the following code ?
import numpy as np a=np.array([2,3,4,5]) print(a.dtype)
निम्नलिखित कोड का आउटपुट क्या होगा?
A. int32
B. int
C. float
D. none of these इनमे से कोई नहीं
All elements in array are integer so the dtype of array is int32 or int64