TypeError: 'str' 不支援緩衝區介面
嘗試在Python 3 中使用gzip.open() 函數時,可能會出現錯誤:「TypeError:『str'不支援緩衝區介面。」這個錯誤源自於Python 3 及其前身中字串處理的差異。
在 Python 3 中,字串物件與緩衝區介面不直接相容,因此必須在將它們寫入之前將它們轉換為位元組壓縮檔案。這可以透過使用適當的編碼對字串進行編碼來完成,例如UTF-8:
plaintext = input("Please enter the text you want to compress").encode("utf-8") filename = input("Please enter the desired filename") with gzip.open(filename + ".gz", "wb") as outfile: outfile.write(plaintext)
此外,建議避免使用「string」和「file」等關鍵字作為變數名稱,因為它們與內建模組和函數衝突。
以上是如何修正 Python 3 的 gzip.open() 中的「型別錯誤:『str』不支援緩衝區介面」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!