11 2021 档案

摘要:base64简单使用 # 编码 import base64 import json dic = {'name':'123', 'age':18} dic_str = json.dumps(dic) ret = base64.b64encode(dic_str.encode('utf-8')) pri 阅读全文
posted @ 2021-11-08 11:30 小白就是我_fxm 阅读(46) 评论(0) 推荐(0)