gpt4 book ai didi

python - 如何将文本文件作为字符串读取?

转载 作者:行者123 更新时间:2023-12-03 18:14:19 25 4
gpt4 key购买 nike

以下是我尝试在名为 check_keyword() 的方法中读取文本文件中的文本的代码

def check_keyword():
with open(unknown.txt, "r") as text_file:
unknown = text_file.readlines()

return unknown

这就是我调用该方法的方式:
dataanalysis.category_analysis.check_keyword()

文本文件中的文本:
Hello this is a new text file 

上述方法没有输出:((

最佳答案

text_file.readlines() 返回包含文件中行的字符串列表。如果您只需要一个字符串,而不是行列表,请改用 text_file.read()

您的代码中还有另一个问题,您正在尝试打开 unknown.txt ,但您应该尝试打开 'unknown.txt' (带有文件名的字符串)。

关于python - 如何将文本文件作为字符串读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53204752/

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