Python中进行Base64编码和解码要用base64模块,代码示例:
#-*- coding: utf-8 -*-
import base64
str = 'cnblogs'
str64 = base64.b64encode(str)
print str64 #Y25ibG9ncw==
print base64.b64decode(str64) #cnblogs
您可能感兴趣的文章:python将图片文件转换成base64编码的方法python获得图片base64编码示例详解Python中使用base64模块来处理