python3 base64加密

python3 base64加密第一種寫法(通過字符串提取) #方法一 import base64 a = 'testzifuchuan' jm = base64.b64encode(a.encode('utf-8')) b = str(jm) print(b[2:-1]) 輸出結果 對於python3,你如果寫成了python2的那種語法,你會得到報錯,因爲在python3裏面是字節流,不是字符
相關文章
相關標籤/搜索