在 Python 中,位元組物件表示二進位數據,而字串則保存文字訊息。如果您從外部來源取得了 bytes 對象,例如程式的標準輸出,您可能需要將其轉換為字串以進行處理或顯示。
在 Python 3 中,您可以使用decode() 方法將 bytes 物件轉換為字串:
bytes_object = b'binary data' string = bytes_object.decode("encoding")
其中「encoding」表示 bytes 物件的編碼。例如,如果資料以 UTF-8 編碼,您可以使用:
bytes_object.decode("utf-8")
範例:
考慮 ls命令的以下輸出,捕獲作為位元組物件:
>>> from subprocess import * >>> stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0]
要將此位元組物件轉換為可列印字串,我們可以使用:
stdout_string = stdout.decode("utf-8") print(stdout_string)
以上是如何在 Python 3 中將位元組解碼為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!