编程语言
首页 > 编程语言> > Python 数据编码 encode decode

Python 数据编码 encode decode

作者:互联网

u = u'中文' #显示指定unicode类型对象u
str = u.encode('gb2312') #以gb2312编码对unicode对像进行编码
str1 = u.encode('gbk') #以gbk编码对unicode对像进行编码
str2 = u.encode('utf-8') #以utf-8编码对unicode对像进行编码
u1 = str.decode('gb2312')#以gb2312编码对字符串str进行解码,以获取unicode
u2 = str.decode('utf-8')#如果以utf-8的编码对str进行解码得到的结果,将无法还原原来的unicode类型
encode #对数据编码
decode #以某种编码对数据解码

 

标签:数据编码,utf,str,编码,Python,decode,unicode,encode
来源: https://www.cnblogs.com/ScarecrowMark/p/11283756.html