【转】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
上一篇:【ZZ】常用推荐算法


下一篇:Codeforces 919D Substring 【拓扑排序】+【DP】