這篇文章主要介紹了Python base64編碼解碼實例,本文直接給出實例代碼,使用也很簡單,需要的朋友可以參考下
Python中進行Base64編碼和解碼要用base64模塊,代碼示例:
?
1 2 3 4 5 6 7 #-*- coding: utf-8 -*- import base64 str = 'cnblogs' str64 = base64.b64encode(str) print str64 #Y25ibG9ncw== print base64.b64decode(str64) #cnblogs