摘要: decode的作用是将其他编码的字符串转换成unicode编码,如str1.decode('gb2312'),表示将gb2312编码的字符串转换成unicode编码 encode的作用是将unicode编码转换成其他编码的字符串,如str2.encode('gb2312'),表示将unicode编码 阅读全文
posted @ 2019-07-12 09:29 seawind2012 阅读(593) 评论(0) 推荐(0) 编辑