How do you inspect the element data type of a NumPy array named arr_int?
arr_int
type(arr_int) gives the exact element width and dtype
type(arr_int)
arr_int.astype without calling it always prints the current dtype
arr_int.astype
np.array.dtype(arr_int)
arr_int.dtype