NumPy 字符串函数 numpy.char.decode()
此函数调用 numpy.char.decode() ,使用指定的编解码器对给定的字符串进行解码。
import numpy as np
a = np.char.encode('hello', 'cp500')
print a
print np.char.decode(a,'cp500')
它的输出如下:
�����
hello
此函数调用 numpy.char.decode() ,使用指定的编解码器对给定的字符串进行解码。
import numpy as np
a = np.char.encode('hello', 'cp500')
print a
print np.char.decode(a,'cp500')
它的输出如下:
�����
hello