首页 > 代码库 > python3.4.1下base64编码问题

python3.4.1下base64编码问题

import base64

encodestr = base64.b64encode(‘abc‘.encode(encoding=‘utf-8‘))
print(encodestr)

 

python3.4.1下base64编码问题