utf-8 codec can't decode byte
po文清單文章推薦指數: 80 %
關於「utf-8 codec can't decode byte」標籤,搜尋引擎有相關的訊息討論:
延伸文章資訊
- 1Decoding UTF-8 strings in Python - Stack Overflow
It's an encoding error - so if it's a unicode string, this ought to fix it: text.encode("windows-...
- 2Understand the encoding/decoding of Python strings (Unicode ...
It's obvious that in Python 3 a string is by default a Unicode string and the u'' prefix is optio...
- 3Unicode HOWTO — Python 3.10.7 documentation
UTF-8 is one of the most commonly used encodings, and Python often defaults to ... UnicodeDecodeE...
- 4Python 的編碼
with open('text.txt', 'r') as f: b_str = f.read() print b_str.decode('utf-8') # 自行判斷標準輸出編碼 print ...
- 5Unicode HOWTO — Python 3.10.7 documentation