原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.dtype.html
校对:(虚位以待)
ndarray.dtype数组元素的数据类型。
| 参数: | 无 | 
|---|---|
| 返回: | d:numpy dtype对象 | 
也可以看看
例子
>>> x
array([[0, 1],
       [2, 3]])
>>> x.dtype
dtype('int32')
>>> type(x.dtype)
<type 'numpy.dtype'>