gpt4 book ai didi

python - 将文本写入 gzip 文件

转载 作者:太空狗 更新时间:2023-10-29 21:27:52 25 4
gpt4 key购买 nike

按照博客和此处其他线程中的教程和示例,写入 .gz 文件的方法似乎是以二进制模式打开它并按原样写入字符串:

import gzip
with gzip.open('file.gz', 'wb') as f:
f.write('Hello world!')

我试过了,得到了以下异常:

  File "C:\Users\Tal\Anaconda3\lib\gzip.py", line 258, in write
data = memoryview(data)
TypeError: memoryview: a bytes-like object is required, not 'str'

所以我尝试以文本模式打开文件:

import gzip
with gzip.open('file.gz', 'w') as f:
f.write('Hello world!')

但是我得到了同样的错误:

  File "C:\Users\Tal\Anaconda3\lib\gzip.py", line 258, in write
data = memoryview(data)
TypeError: memoryview: a bytes-like object is required, not 'str'

如何在 Python3 中解决这个问题?

最佳答案

mode='wb'

当写入以二进制模式打开的文件时,您必须写入字节,而不是字符串。使用 str.encode 对您的字符串进行编码:

with gzip.open('file.gz', 'wb') as f:
f.write('Hello world!'.encode())

mode='wt'

(由 OP 找到)或者,您可以在 wt(显式 text)模式下打开文件时将字符串写入文件:

with gzip.open('file.gz', 'wt') as f:
f.write('Hello world!')

documentation有几个方便的使用示例。

关于python - 将文本写入 gzip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49286135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com