摘要:
方法一: 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.writ 阅读全文
posted @ 2021-07-02 23:05
子舟
阅读(100)
评论(0)
推荐(0)