numpy.strings.decode#

strings.decode(a, encoding=None, errors=None)[source]#

逐元素调用 bytes.decode

可用的编解码器集合来自 Python 标准库,并且可以在运行时扩展。有关更多信息,请参阅 codecs 模块。

参数:
a类数组,具有 bytes_ 数据类型
encodingstr,可选

编码名称

errorsstr,可选

指定如何处理编码错误

返回值:
outndarray

参见

bytes.decode

备注

结果的类型将取决于指定的编码。

示例

>>> import numpy as np
>>> c = np.array([b'\x81\xc1\x81\xc1\x81\xc1', b'@@\x81\xc1@@',
...               b'\x81\x82\xc2\xc1\xc2\x82\x81'])
>>> c
array([b'\x81\xc1\x81\xc1\x81\xc1', b'@@\x81\xc1@@',
       b'\x81\x82\xc2\xc1\xc2\x82\x81'], dtype='|S7')
>>> np.strings.decode(c, encoding='cp037')
array(['aAaAaA', '  aA  ', 'abBABba'], dtype='<U7')