Python base64编码解码
生活随笔
收集整理的這篇文章主要介紹了
Python base64编码解码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import base64copyright = '17634231213823859694940628000252303992'def main():#轉成bytes stringbytesString = copyright.encode(encoding="utf-8")print(bytesString)#base64 編碼encodestr = base64.b64encode(bytesString)print(encodestr)print(encodestr.decode())#解碼decodestr = base64.b64decode(encodestr)print(decodestr.decode())if __name__ == '__main__':main()
?
總結
以上是生活随笔為你收集整理的Python base64编码解码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: docker ubuntu16.04镜像
- 下一篇: SQLAlchemy 教程 —— 进阶篇