python實現文本去重且不打亂原本順序
更新時間:2016年01月26日 22:43:36 投稿:mdxy-dxy
這篇文章主要介紹了python實現文本去重且不打亂原本順序,需要的朋友可以參考下
代碼也是在網上找的,效率挺不錯的,特別適合字典文件的去重
#coding=utf-8 import sys def open_txt(): #打開TXT文本寫入數組 try: xxx = file(sys.argv[1], 'r') for xxx_line in xxx.readlines(): passlist.append(xxx_line) xxx.close() except: return 0 def write_txt(): #打開TXT文本寫入數組 try: yyy = file(sys.argv[2], 'w') for i in list_passwed: yyy.write(i) yyy.close() except: return 0 global 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 #退出循環(huán)
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到數組及列表去重后按原來順序排序的方法。分享給大家供大家參考。
相關文章
django admin 根據choice字段選擇的不同來顯示不同的頁面方式
這篇文章主要介紹了django admin 根據choice字段選擇的不同來顯示不同的頁面方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-05-05
Python基于pyCUDA實現GPU加速并行計算功能入門教程
這篇文章主要介紹了Python基于pyCUDA實現GPU加速并行計算功能,結合實例形式分析了Python使用pyCUDA進行GPU加速并行計算的原理與相關實現操作技巧,需要的朋友可以參考下2018-06-06
Python Pillow.Image 圖像保存和參數選擇方式
今天小編就為大家分享一篇Python Pillow.Image 圖像保存和參數選擇方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-01-01

