python3 將bytes轉為字串

二月雪發表於2024-09-02
test_str = b'\xe9\x98\xbf\xe6\x89\x81\xe6\x8e\xa8\xe7\xbf\xbb'  # b的表示bytes型別, u表示為unicode編碼
test_str  = str(test_str, encoding='utf-8')

相關文章