Python 2与Python 3下的base64模块(2)

这里面的s是一个bytes对象,则字符串首先要经过编码encode()。经过b64encode/b64decode之后的返回结果也是bytes对象,所以我们要转换为Unicode对象就要再使用decode()方法去解码。

import base64

s = 'Hello, Python!'
b = base64.b64encode(s.encode('utf-8')).decode('utf-8')
print(b)

c = base64.b64decode(b.encode('utf-8')).decode('utf-8')
print(c)

# output
SGVsbG8sIFB5dGhvbiE=
Hello, Python!

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/dd95a2b553ab43f1d870759ee102840b.html