numpy.dtype.base #

属性

数据类型。根据

返回子数组的基本元素的 dtype,无论其维度或形状如何。

也可以看看

dtype.subdtype

例子

>>> x = numpy.dtype('8f')
>>> x.base
dtype('float32')
>>> x =  numpy.dtype('i2')
>>> x.base
dtype('int16')