python 文件 *** 作删除某行的实例

python 文件 *** 作删除某行的实例,第1张

概述使用continue跳过本次写循环就可以了#文本内容YesterdaywhenIwasyoung昨日当我年少轻狂

使用continue跳过本次写循环就可以了

#文本内容Yesterday when I was young昨日当我年少轻狂The tasting of life was sweet生命的滋味是甜的As rain upon my tonguetastingI lived by night and shunned the naked light of daytasting123And only Now I see how the time ran awaytasting tasting

将文本中的 tasting123删除 

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 文件 *** 作删除某行的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的python 文件 *** 作删除某行的实例全部内容,希望文章能够帮你解决python 文件 *** 作删除某行的实例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1201650.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存