<type 'numpy.string_'> 和 <type 'str'> 类型有啥区别?

Posted

技术标签:

【中文标题】<type \'numpy.string_\'> 和 <type \'str\'> 类型有啥区别?【英文标题】:What is the difference between the types <type 'numpy.string_'> and <type 'str'>?<type 'numpy.string_'> 和 <type 'str'> 类型有什么区别? 【发布时间】:2015-07-17 04:36:21 【问题描述】:

&lt;type 'numpy.string_'&gt;&lt;type 'str'&gt;这两种类型有区别吗?

【问题讨论】:

【参考方案1】:

numpy.string_ 是用于包含固定宽度字节字符串的数组的 NumPy 数据类型。另一方面,str 是原生 Python 类型,不能用作 NumPy 数组的数据类型*。

如果您创建一个包含字符串的 NumPy 数组,该数组将使用 numpy.string_ 类型(或 Python 3 中的 numpy.unicode_ 类型)。更准确地说,该数组将使用np.string_ 的子数据类型:

>>> a = np.array(['abc', 'xy'])
>>> a
array(['abc', 'xy'], dtype='<S3')
>>> np.issubdtype('<S3', np.string_)
True

在这种情况下,数据类型为'&lt;S3'&lt; 表示字节顺序(小端),S 表示字符串类型,3 表示数组中的每个值最多包含三个字符(或字节)。

np.string_str 共享的一个属性是不变性。尝试增加 Python str 对象的长度将在内存中创建一个新对象。同样,如果您希望固定宽度的 NumPy 数组容纳更多字符,则必须在内存中创建一个新的更大的数组。


* 请注意,可以创建一个 NumPy object 数组,其中包含对 Python str 对象的引用,但此类数组的行为与普通数组完全不同。

【讨论】:

我认为str可以用在numpy数组中。因此,我有一个错误。一个数组返回type(X[0])str,另一个数组返回numpy.str_ 想知道为什么 numpy 使用 np.string_ 而不是 np.string?为什么最后是'_'? @HelinWang 查看以下问题:***.com/questions/6205020/…

以上是关于<type 'numpy.string_'> 和 <type 'str'> 类型有啥区别?的主要内容,如果未能解决你的问题,请参考以下文章

第83天:NumPy 字符串操作

如何将 pandas 数据框列转换为本机 python 数据类型?

Python type 与 __bases__

type和object

python 中的type

python之type