【转】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
原文地址:https://www.cnblogs.com/JarningGau/p/5333433.html