摘要: 一、Python Base64编码Python中进行Base64编码和解码要用base64模块,代码示例:#-*- coding: utf-8 -*-import base64str = 'cnblogs'str64 = base64.b64encode(str)print str64 ... 阅读全文
posted @ 2015-04-16 19:11 观海云不远 阅读(655) 评论(0) 推荐(0)