《十五、base64编码》练习题答案

练习题
请使用base64加密“你好,世界”。
from base64 import b64encode
print(b64encode('你好,世界'.decode('UTF-8')))

你可能感兴趣的:(python)