python--base64編碼二進制字符串

1、 str與bytes 互轉cookie a = 'abcd' b = b'abcde' # str to bytes print(bytes(a, encoding="utf-8")) # 必須制定編碼格式 # bytes to str print(bytes.decode(b)) 運行結果: b'abcd' abcde 2、base64詳解app base64是把二進制字符串轉換成base
相關文章
相關標籤/搜索