What will be the output of following Python code?
import numpy as npa = np.array([(10,20,30)])print(a.itemsize)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
A. 10
B. 9
C. 4
D. All of the mentioned above
Using itemsize, we can determine the byte size of each element. In the above code, a single-dimensional array has built, and we can determine the size of each element with the aid of the itemsize function.