使用python读取txt文件的内容,并删除重复的行数方法

注意,本文代码是使用在txt文档上,同时txt文档中的内容每一行代表的是图片的名字。

#coding:utf-8

import shutil

readDir = "原文件绝对路经"

writeDir = "写入文件的绝对路径"

#txtDir = "/home/fuxueping/Desktop/1"

lines_seen = set()

outfile=open(writeDir,"w")

f = open(readDir,"r")

for line in f:

if line not in lines_seen:

outfile.write(line)

lines_seen.add(line)

outfile.close()

print "success"

最终结果在在写入文件内容中,没有重复内容。

以上这篇使用python读取txt" title="python读取txt">python读取txt文件" title="python读取txt文件">python读取txt文件的内容,并删除重复的行数方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 使用python读取txt文件的内容,并删除重复的行数方法 的全部内容, 来源链接: utcz.com/z/360491.html

回到顶部