gpt4 book ai didi

Python:特定单词后文本文件中的换行符

转载 作者:太空宇宙 更新时间:2023-11-03 13:51:43 24 4
gpt4 key购买 nike

我有一个文本文件,只有一行有 10.000 个单词。现在我想在特定单词(“评论”)出现之前添加一个换行符,我还想将其写在一个新的文本文件中:

文本文件看起来像:“评论:是的,你是对的评论:这很有趣评论:真的吗?

新文件应该是这样的:

    Comment: Yeah, you're right
Comment: That's very interesting
Comment: really?

我试过下面这段代码,但有问题。我是初学者,直到现在,我还找不到解决方案。感谢您的帮助

    -*- coding: utf-8 -*-

d = file('test.txt','r')
text=d.read()
e = file('output.txt','w')
x=raw_input("Insert word:")
# -> Comment
for line in d.readlines():
if line.startswith(x):
word.append(+"\n")
e.write()
e.close()
d.close()

最佳答案

你只需要使用 str.replace:

e.write(d.read().replace(' Comment:', '\nComment:'))

关于Python:特定单词后文本文件中的换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7236424/

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