gpt4 book ai didi

Python 将光标移动到 .txt 行的末尾

转载 作者:行者123 更新时间:2023-11-28 22:01:57 25 4
gpt4 key购买 nike

我需要在文本文件中每一行的末尾写入 () 文本。如何将光标指向特定行的末尾。

注意:seek(0,2) 会将我放在文件末尾,但我需要每一行的末尾。

感谢大家的帮助 - 我已经结合了你们的解决方案来实现我所需要的:

AllLines = [ (str.rstrip('\n') + 'Val2' + "\n" ) for str in AllLines ]

然后我可以将 AllLines 写入新的输出文件。

最佳答案

您需要分两步完成此操作。由于创建新文件更安全,您可以:

with open("input.txt") as infile, open("output.txt", "w") as outfile:
for line in infile:
outfile.write(line.rstrip("\n") + "added text\n")

关于Python 将光标移动到 .txt 行的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12392423/

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