gpt4 book ai didi

python - 如何在 Python 的 tempfile.TemporaryFile() 中指定文本模式?

转载 作者:太空狗 更新时间:2023-10-30 02:27:01 26 4
gpt4 key购买 nike

documentation , TemporaryFile() 提到

The returned object is a file-like object whose _file attribute is either an io.BytesIO or io.StringIO object (depending on whether binary or text mode was specified)...

但是,从 Python 3.6 开始,没有请求文本模式的 text=True 方法。如何做到这一点?

最佳答案

临时文件签名:

 tempfile.TemporaryFile(mode='w+b', buffering=None, encoding=None, newline=None, suffix=None, prefix=None, dir=None)

我们对 mode 参数感兴趣。最后一个符号是'b',表示二进制模式。如果传递 mode='wt',它将以文本模式打开。

本页描述了所有模式:https://docs.python.org/3/library/functions.html#open

关于python - 如何在 Python 的 tempfile.TemporaryFile() 中指定文本模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42612369/

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