python3中程序默认数据类型为Unicode,所以直接将数据编码(encode)成为 ... 1 import base64 2 3 s = 'Hello, python' 4 b = base64.b64encode(s) 5 ...
確定! 回上一頁