b=[]
file=open("C:\\Users\\lenovo\\Desktop\\1.txt",encoding="UTF-8")#需要打开文件的绝对地址
a=file.readlines()
for i in range(len(a)):
if "xxxx" not in a[i]:#xxxx是关键词
b.append(a[i])
file2 = open('C:\\Users\\lenovo\\Desktop\\text2.txt', 'w', encoding='utf-8') #要写入文件的地址
file2.writelines(b)
file.close()
file2.close()
利用python删除关键词所在的行
最新推荐文章于 2023-12-26 11:24:42 发布