import base64 # 编码过程 s = "我是一个字符串" # a bytes-like object is required encoder = base64.b64encode(s.encode("utf-8")) print(encoder) ...
確定! 回上一頁