gpt4 book ai didi

python - 如何将 _io.TextIOWrapper 转换为字符串?

转载 作者:行者123 更新时间:2023-12-03 22:40:32 28 4
gpt4 key购买 nike

我使用下面的代码阅读文本格式,

f = open("document.txt", "r+", encoding='utf-8-sig')
f.read()
但是 f的类型是 _io.TextIOWrapper .但我需要输入字符串才能继续。
请帮我转换 _io.TextIOWrapper串起来。

最佳答案

您需要使用 f.read() 的输出.

string = f.read()
我认为您的困惑是 f只需调用它的方法 .read() 就会变成字符串,但事实并非如此。我认为内置程序甚至不可能做到这一点。
供引用, _io.TextIOWrapper是打开的文本文件的类。见 the documentation for io.TextIOWrapper .

顺便说一句,最佳实践是使用 with - 打开文件的语句:
with open("document.txt", "r", encoding='utf-8-sig') as f:
string = f.read()

关于python - 如何将 _io.TextIOWrapper 转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62589828/

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