第四篇编码与解码及列表元祖
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第四篇编码与解码及列表元祖相关的知识,希望对你有一定的参考价值。
一、解码与编码
Def decode(self,encoding-None,errors=None): “”解码 s.decode([encoding[,errors]) →object Def encode(self,encoding=None,errors=None): “””编码 针对unicode
代码如下:
中文是gbk >>> ‘无‘ ‘\\xce\\xde‘ >>> str1 =‘\\xce\\xde‘ >>> print str1 无 >>> str1.decode(‘gbk‘).encode(‘utf-8‘) →解码成unicode之后编码成utf-8 ‘\\xe6\\x97\\xa0‘ >>> print str1.decode(‘gbk‘).encode(‘utf-8‘) 鏃
二、列表基础
累了、困了,下次续更
以上是关于第四篇编码与解码及列表元祖的主要内容,如果未能解决你的问题,请参考以下文章