junjie 通过本文主要向大家介绍了python base64编码,python base64,python base64解码,python base64加密,python base64解密等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
Python中进行Base64编码和解码要用base64模块,代码示例:
#-*- coding: utf-8 -*- import base64 str = 'cnblogs' str64 = base64.b64encode(str) print str64 #Y25ibG9ncw== print base64.b64decode(str64) #cnblogs</div> </div>

