python字符串怎么解码?

图片[1]-python字符串怎么解码?-uusu优素-乐高,模型,3d打印,编程

python字符串解码的方法:

python中可以使用decode()方法对字符串进行解码。

python中可以使用encode()方法将字符串转换为bytes类型,此过程称为“编码”。

decode() 方法用于将 bytes 类型的二进制数据转换为 str 类型,这个过程也称为“解码”。

decode() 方法的语法格式如下:

bytes.decode([encoding="utf-8"][,errors="strict"])

示例:

#!/usr/bin/python

str="thisisstringexample....wow!!!";
str=str.encode('base64','strict');

print"EncodedString:"+str;
print"DecodedString:"+str.decode('base64','strict')

输出结果如下:

Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=

Decoded String: this is string example….wow!!!

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容