首页 > 代码库 > python-unicode十进制数字转中文

python-unicode十进制数字转中文

#coding:utf-8‘‘‘主要是unichr()函数。以下数组中的元素转换后为繁体中文,若不加encode("GB18030")就不能正确显示,而且会报错:(‘gbk‘ codec can‘t encode character u‘\ue5fa‘ in position 0:illegal multibyte sequence)‘‘‘str1=[58874,12417,58859,12417,58896,57809]for x in str1:    print unichr(x).encode("GB18030"),

  

python-unicode十进制数字转中文