python 文件操作删除某行的实例
使用continue跳过本次写循环就可以了
#文本内容 YesterdaywhenIwasyoung 昨日当我年少轻狂 Thetastingoflifewassweet 生命的滋味是甜的 Asrainuponmytongue tasting Ilivedbynightandshunnedthenakedlightofday tasting123 AndonlynowIseehowthetimeranaway tasting tasting
将文本中的tasting123删除
withopen("fileread.txt","r",encoding="utf-8")asf: lines=f.readlines() #print(lines) withopen("fileread.txt","w",encoding="utf-8")asf_w: forlineinlines: if"tasting123"inline: continue f_w.write(line)
以上这篇python文件操作删除某行的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。