Python中decode函数怎么用
在Python中使用decode函数的方法
decode:decode()函数的作用是指定的编码格式解码字符串。
decode()函数语法:
str.decode(encoding='UTF-8',errors='strict')
参数:
encoding:表示需要指定的编码。
errors:设置不同错误的处理方案。
decode()函数使用方法:
str = "hello world";
str = str.encode('base64','strict');
print "Encoded String: " + str;
print "Decoded String: " + str.decode('base64','strict')
输出结果为:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=
Decoded String: hello world
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/