当前位置: 首页 > 文档资料 > NumPy 中文教程 >

encode()

优质
小牛编辑
138浏览
2023-12-01

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

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

其输出如下 -