numpy.char.encode() 函数
此函数为数组中的每个元素调用str.encode 函数。 默认编码为 utf_8,可以使用标准 Python 库中可用的编解码器。
import numpy as np a = np.char.encode('hello', 'cp500') print a
它的输出结果如下 −
�����
此函数为数组中的每个元素调用str.encode 函数。 默认编码为 utf_8,可以使用标准 Python 库中可用的编解码器。
import numpy as np a = np.char.encode('hello', 'cp500') print a
它的输出结果如下 −
�����
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。