摘要: 1 #将Unicode转换成普通的Python字符串:"编码(encode)" 2 unicodestring = u"Hello world" 3 utf8string = unicodestring.encode("utf-8") 4 asciistring = unicodestring.en 阅读全文
posted @ 2016-12-29 10:40 Alan-z 阅读(9176) 评论(0) 推荐(0) 编辑