【转】python删除文件里包含关键词的行

import shutil
with open('/path/to/file', 'r') as f:
    with open('/path/to/file.new', 'w') as g:
        for line in f.readlines():
            if '/local/server' not in line:             
                g.write(line)
shutil.move('/path/to/file.new', '/path/to/file')

 


原文链接:https://segmentfault.com/q/1010000000124564
posted @ 2016-03-29 16:26  Jarning_Gau  阅读(1412)  评论(0编辑  收藏  举报