[Python]pyhon去除txt文件重复行 python 2020.2.10
Posted 雾霾王者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python]pyhon去除txt文件重复行 python 2020.2.10相关的知识,希望对你有一定的参考价值。
代码如下:
1 import shutil 2 3 readPath=‘E:/word4.txt‘ #要处理的文件 4 writePath=‘E:/word5.txt‘ #要写入的文件 5 lines_seen=set() 6 outfiile=open(writePath,‘a+‘,encoding=‘utf-8‘) 7 f=open(readPath,‘r‘,encoding=‘utf-8‘) 8 for line in f: 9 if line not in lines_seen: 10 outfiile.write(line) 11 lines_seen.add(line)
以上是关于[Python]pyhon去除txt文件重复行 python 2020.2.10的主要内容,如果未能解决你的问题,请参考以下文章
水文日常~~Python如何按行读取txt文件中的数据并去除每行末尾的回车符