文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Python字符串的编码和解码

Python字符串的编码和解码

时间:2006-10-30  来源:liwenqiu

先举个例子: #coding: gbk   unicodestring = u"Hello, 中国"   #Convent Unicode to plain Python string: "encode" utf8string = unicodestring.encode("utf-8") utf16string = unicodestring.encode("utf-16") gbkstring = unicodestring.encode("gbk") cp932string = unicodestring.encode("cp932")   #Convent plain Python string to Unicode: "decode" unicodestring1 = unicode(utf8string, "utf-8") unicodestring2 = unicode(utf16string, "utf-16") unicodestring3 = unicode(gbkstring, "gbk") unicodestring4 = unicode(cp932string, "cp932")   概括的说,调用一个unicode对象的encode方法,返回相应编码的string对象;调用某种编码的string对象的decode或调用unicode方法,返回一个unicode对象
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载