在使用 Python 做網絡編程的時候難免會遇到字符串與字節流的轉換,這裡我們記錄以下幾種常用的方法:
首先是字節數組轉字符串,也就是str:
1 2 3 4 5 |
b = b'some byte array' str(b, encoding = "utf-8") #or bytes.decode(b) |
然後是字符串轉為字節數組:
1 2 3 4 5 |
s = 'some string' bytes(s, encoding = "utf8") #or str.encode(s) |
以上兩種方法不論哪種都是可以的。
本文由 落格博客 原創撰寫:落格博客 » Python 字符串 與 字節數組 轉換
轉載請保留出處和原文鏈接:https://www.logcg.com/archives/1686.html
乾貨啊