扫码一下
查看教程更方便
Python encode() 方法以 encoding 指定的编码格式编码字符串。errors参数可以指定不同的错误处理方案。
encode()方法语法:
str.encode(encoding='UTF-8',errors='strict')
该方法返回编码后的字符串。
以下实例展示了encode()方法的实例:
#!/usr/bin/python3
import base64
Str = "this is string example....wow!!!"
Str = base64.b64encode(Str.encode('utf-8',errors = 'strict'))
print ("Encoded String: " , Str)
上述代码执行结果如下:
Encoded String: b'dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE='