gpt4 book ai didi

python - 从文本文件中删除或清除一行

转载 作者:行者123 更新时间:2023-12-04 02:36:05 25 4
gpt4 key购买 nike

正如标题一样简单,真的。但不知何故挣扎。

用 boop 删除行

beep
boop
bop
Hey
beep
boop
bop
file_path = "C:\\downloads\\test.txt"
with open(file_path, "r") as f:
lines = f.readlines()
with open(file_path, "w") as f:
for line in lines:
if line.rfind("boop") >= 0:
f.write(line)

file_in.close()

我不明白完全删除或清除该行的最佳方法。

最佳答案

您可以以读写模式打开文件并删除符合条件的行。

with open(file_path, "r+") as fp:
lines = fp.readlines()
fp.seek(0)
for line in lines:
if "boop" not in line:
fp.write(line)
fp.truncate()

seek 重置文件指针。

引用:using Python for deleting a specific line in a file

关于python - 从文本文件中删除或清除一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61766228/

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