码迷,mamicode.com
首页 > 编程语言 > 详细

python字符串的encode和decode

时间:2016-11-14 02:13:03      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:get   hang   targe   code   解码   编码   unicode编码   decode   com   

原文

decode的作用是将其他编码的字符串转换成unicode编码。

str1.decode(gb2312)
#表示将gb2312编码的字符串转换成unicode编码

encode的作用是将unicode编码转换成其他编码的字符串。

str2.encode(gb2312)
#表示将unicode编码的字符串转换成gb2312编码

 

PS:字符串在Python内部的表示是unicode编码。

因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码(decode)成unicode,再从unicode编码(encode)成另一种编码。

 

python字符串的encode和decode

标签:get   hang   targe   code   解码   编码   unicode编码   decode   com   

原文地址:http://www.cnblogs.com/farewell-farewell/p/6060345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!