首页 > 编程语言 > 详细

Python base64编码解码实例

时间:2015-12-12 21:24:17      阅读:201      评论:0      收藏:0      [点我收藏+]

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

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

str = ‘cnblogs‘
str64 = base64.b64encode(str)
print str64           #Y25ibG9ncw==
print base64.b64decode(str64)  #cnblogs

Python base64编码解码实例

原文:http://www.jb51.net/article/68221.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!