2015年6月26日

Python核心编程笔记--unicode编码

摘要: #定义编码方式,与物理文件。code='utf-8'file='D:/utf8.txt'#把编码后的字符写入文件。hello_out =u'hello world'bytes_out =hello_out.encode(code)f = open(file,'w')f.write(bytes_out... 阅读全文

posted @ 2015-06-26 14:55 蒋乐兴的技术随笔 阅读(238) 评论(0) 推荐(0) 编辑

导航