Python---去除txt文件中重复的行数
2021/9/29 17:11:08
本文主要是介绍Python---去除txt文件中重复的行数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
采用python中set()的概念,通过遍历原始文档中的元素,并将其添加到set()中,然后根据set()的性质来判断新的元素是否要被添加到新的文档中去。最终生成的新的文档即满足所需。
#coding:utf-8 readDir = "./original_file.txt" writeDir = "./new_file.txt" outfile=open(writeDir,"w") f = open(readDir,"r") lines_seen = set() # Build an unordered collection of unique elements. for line in f: line = line.strip('\n') if line not in lines_seen: outfile.write(line+ '\n') lines_seen.add(line)
来源:https://blog.csdn.net/william_hehe/article/details/86672938
这篇关于Python---去除txt文件中重复的行数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享