python删除文件中的行

python怎么删除文件中的行,比如下面这个文件demo.txt,内容如下:

hello world!
hello beijing!
hello shanghai!
hello hangzhou!

//delete
hello NewYork!
hello London!

我想把从注释//delete开始后面的行都删掉,应该怎么做呢?
需要给删除的每行添加一个标记吗?看到一个示例是这样写的:

def remove_lines():
    with open("demo.txt", "r") as f:
        lines = f.readlines()

    with open("demo.txt", "w") as f_w:
        for line in lines:
            if "mark" in line:  #要删除的每行有个mark标记字符串
                continue
            f_w.write(line)

有其他更简洁一点的写法吗?

阅读 6.4k
2 个回答
with open('demo.txt', 'r') as f:
    lines = f.readlines()

index = lines.index('//delete\n')
lines = lines[:index]
    
with open('demo.txt', 'w') as f:
    for line in lines:
        f.write(line)
import re
with open("hello.txt", "r") as f:
    lines = f.read()

ll = re.sub('//delete[\s\S]*','',lines,re.S)
f = file('hello.txt','w')
f.write(ll)
f.close()

结合正则表达式

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进