#itemsize shows the length of one array element in bytes import numpy as np a = np.array([[1,2,3],[4,5,6]],dtype = np.int64) a.itemsize #output will be 8