码迷,mamicode.com
首页 > 编程语言 > 详细

python--文件操作删除某行

时间:2017-06-16 11:30:56      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:ast   imp   padding   server   readline   pre   util   not   line   

方法一:

 

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‘)

 

方法二:

 

将文本中的 tasting123删除 

1
2
3
4
5
6
7
8
with open("fileread.txt","r",encoding="utf-8") as f:
    lines = f.readlines()
    #print(lines)
with open("fileread.txt","w",encoding="utf-8") as f_w:
    for line in lines:
        if "tasting123" in line:
            continue
        f_w.write(line)

 

python--文件操作删除某行

标签:ast   imp   padding   server   readline   pre   util   not   line   

原文地址:http://www.cnblogs.com/nopnog/p/7026390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!