python 文件操作删除某行的实例
作者:Bigberg 时间:2022-09-21 12:15:18
使用continue跳过本次写循环就可以了
#文本内容
Yesterday when I was young
昨日当我年少轻狂
The tasting of life was sweet
生命的滋味是甜的
As rain upon my tongue
tasting
I lived by night and shunned the naked light of day
tasting123
And only now I see how the time ran away
tasting
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)
来源:http://www.cnblogs.com/bigberg/p/6495373.html
标签:python,删除某行
0
投稿
猜你喜欢
404页面设计一样可以闪光
2007-08-19 15:09:00
Pycharm安装第三方库失败解决方案
2021-10-09 07:01:39
Python中的heapq模块源码详析
2023-09-23 12:07:23
详解Python操作Excel之openpyxl
2021-10-13 05:13:21
Keras函数式(functional)API的使用方式
2023-09-19 05:52:15
python把1变成01的步骤总结
2021-10-25 05:28:47
解析Tensorflow之MNIST的使用
2021-09-06 03:34:27
python中numpy的矩阵、多维数组的用法
2021-01-26 04:25:43
React路由鉴权的实现方法
2024-05-02 17:06:12
matplotlib绘制符合论文要求的图片实例(必看篇)
2023-08-12 08:08:39
Python制作简单的网页爬虫
2022-10-09 12:49:16
Go语言字符串基础示例详解
2023-07-17 03:14:56
Python基于随机采样一至性实现拟合椭圆(优化版)
2021-10-19 15:08:36
hmac模块生成加入了密钥的消息摘要详解
2023-05-17 09:26:46
Python字典删除键值对和元素的四种方法(小结)
2021-06-12 22:58:24
SQL Server的触发器详解
2024-01-21 16:26:58
django-csrf使用和禁用方式
2023-08-13 15:13:34
替换python字典中的key值方法
2022-10-20 04:03:34
Python要如何实现列表排序的几种方法
2022-02-01 16:23:07
Python使用代理抓取网站图片(多线程)
2023-06-25 17:34:50