导语:
本文主要介绍了关于python字符串怎么解码?的相关知识,包括python解码并打印,以及python查看字符串编码这些编程知识,希望对大家有参考作用。
python字符串解码的方法:
python中可以使用decode()方法对字符串进行解码。
在 python 中,可以使用 encode() 方法将字符串转换为字节类型,这个过程称为“编码”。
decode() 方法用于将 bytes 类型的二进制数据转换为 str 类型。这个过程也称为“解码”。
decode() 方法的语法格式如下:
bytes.decode([encoding="utf-8"][,errors="strict"])
示例:
#!/usr/bin/python
str = "this is string example....wow!!!";
str = str.encode('base64','strict');
print "Encoded String: " + str;
print "Decoded String: " + str.decode('base64','strict')
输出结果如下:
Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=
Decoded String: this is string example....wow!!!
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ datetime如何在python3时间进行循环?12/23
- ♥ python编程需要什么环境09/15
- ♥ python如何保留指定的小数位数?09/05
- ♥ python没有数据类型吗?11/22
- ♥ 如何安装指定版本的python包09/04
- ♥ 如何在python中安装redis10/25
内容反馈