python实现文本去重且不打乱原本顺序

python实现文本去重且不打乱原本顺序,第1张

概述代码也是在网上找的,效率挺不错的,特别适合字典文件的去重#coding=utf-8importsys

代码也是在网上找的,效率挺不错的,特别适合字典文件的去重

#Coding=utf-8import sysdef open_txt(): #打开TXT文本写入数组try:xxx = file(sys.argv[1],'r')for xxx_line in xxx.readlines():passList.append(xxx_line)xxx.close()except:return 0def write_txt(): #打开TXT文本写入数组try:yyy = file(sys.argv[2],'w')for i in List_passwed:yyy.write(i)yyy.close()except:return 0global passList #声明全局变量passList = [] #用户名:anonymous 密码为空open_txt() #TXT导入数组#passList = List(set(passList)) #python 列表去重global List_passwed #列表去重,不打乱原来的顺序List_passwed=[]for i in passList:if i not in List_passwed:List_passwed.append(i)write_txt()

python 读取TXT到数组 列表去重,不打乱原来的顺序

#####################################################################qq:316118740#BLOG:http://hi.baIDu.com/alalmn# python 读取TXT到数组  列表去重,不打乱原来的顺序# 刚学写的不好请大家见谅####################################################################   def open_txt(): #打开TXT文本写入数组  try:    infile = file('admin.txt','r')    xxx = file('admin.txt','r')    for xxx_line in xxx.readlines():      passList.append(xxx_line)    xxx.close()  except:    return 0 def List_del(): #清空List列表  try:    i = 0 #得到List的第一个元素    while i < len(passList):      del passList[i]      del List_passwed[i]  except:    return 0   ######################################    global passList #声明全局变量  passList = []  #用户名:anonymous 密码为空  www_cj(www) #域名拆解  open_txt()  #TXT导入数组  #passList = List(set(passList))  #python 列表去重  global List_passwed #列表去重,不打乱原来的顺序  List_passwed=[]  for i in passList:    if i not in List_passwed:      List_passwed.append(i)######################################  遍历数组组合出 密码  I1 = 0 #得到List的第一个元素  while I1 < len(List_passwed):    print "WWWWWWWWWWW",I1    if I1==len(List_passwed):      break #退出循环    I2 = 0 #得到List的第一个元素    while I2 < len(List_passwed):      print "1111:",List_passwed[I1],"2222:",List_passwed[I2]      I2 = I2 + 1 #二层    I1 = I1 + 1  #一层######################################

本文实例讲述了python读取TXT到数组及列表去重后按原来顺序排序的方法。分享给大家供大家参考。

总结

以上是内存溢出为你收集整理的python实现文本去重且不打乱原本顺序全部内容,希望文章能够帮你解决python实现文本去重且不打乱原本顺序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1204823.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存