时间:2021-05-22
代码也是在网上找的,效率挺不错的,特别适合字典文件的去重
#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 #一层######################################补充
# -*- coding: utf-8 -*-'''只使用与较小的文件,比较大的文件运行时间长'''def quchong(infile,outfile): infopen = open(infile,'r',encoding='utf-8') outopen = open(outfile,'w',encoding='utf-8') lines = infopen.readlines() list_1 = [] for line in lines: if line not in list_1: list_1.append(line) outopen.write(line) infopen.close() outopen.close()quchong("源文件路径","目标文件路径")本文实例讲述了python读取TXT到数组及列表去重后按原来顺序排序的方法。分享给大家供大家参考。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
背景python去重一顿操作猛如虎,setlist扒拉下去,就去重了,但是顺序就打乱了。如果对顺序没有需要的话,这样确实没有什么所谓。但是如果需要保留顺序的话,
python列表元素去重后如何保持原来的顺序不变原列表:list1=[1,2,1,4,9,3,5,2,6,7,3,1,6,8,4,0]去重,使用集合set来去重
滑动拼图就是把一张图片分成几等份,打乱顺序(下图),然后通过滑动拼凑成一张完整的图片。要实现一个拼图游戏,需要考虑怎样随机的打乱顺序,怎样交换两张图片的位置,等
可迭代对象去重(保持顺序不变)deffilter_multi(items,key=None):"""可迭代对象去重(保持顺序不变)[1,4,7,2,4,7,3,
复制代码代码如下:@echooff::bySKB::说明----将文本中的所有内容无规则打乱顺序排列@echooffif"%1"neq"$"(for/f"tok