python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python base64编码解码

Python base64编码解码实例

投稿:junjie

这篇文章主要介绍了Python base64编码解码实例,本文直接给出实例代码,使用也很简单,需要的朋友可以参考下

Python中进行Base64编码和解码要用base64模块,代码示例:

#-*- coding: utf-8 -*-
import base64

str = 'cnblogs'
str64 = base64.b64encode(str)
print str64           #Y25ibG9ncw==
print base64.b64decode(str64)  #cnblogs
您可能感兴趣的文章:
阅读全文