numpy.char.encode() 函数

此函数为数组中的每个元素调用str.encode 函数。 默认编码为 utf_8,可以使用标准 Python 库中可用的编解码器。

import numpy as np 
a = np.char.encode('hello', 'cp500') 
print a

它的输出结果如下 −

�����

❮ NumPy 字符串函数