首页 > 代码库 > python--文件操作删除某行
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‘)
方法二:
将文本中的 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--文件操作删除某行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。