python byte轉str,str轉byte

在涉及到網絡傳輸的時候,數據需要從str轉換成btye才能進行傳輸。 python byte 轉 str , str 轉 byte 其實很簡單: 原理圖如下: 案例: a: str = "你好!" b: bytes = a.encode('gbk') print(b) c: str = b.decode('gbk') print(c) 輸出結果: b'\xc4\xe3\xba\xc3\xa3\xa
相關文章
相關標籤/搜索