此函数为数组中的每个元素调用str.encode function 。 默认编码为utf_8,可以使用标准Python库中可用的编解码器。
import numpy as np a = np.char.encode('hello', 'cp500') print a
其输出如下 -