python實(shí)現(xiàn)文本去重且不打亂原本順序
代碼也是在網(wǎng)上找的,效率挺不錯(cuò)的,特別適合字典文件的去重
#coding=utf-8 import sys def open_txt(): #打開TXT文本寫入數(shù)組 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文本寫入數(shù)組 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導(dǎo)入數(shù)組 #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到數(shù)組 列表去重,不打亂原來的順序
#################################################################### #qq:316118740 #BLOG:http://hi.baidu.com/alalmn # python 讀取TXT到數(shù)組 列表去重,不打亂原來的順序 # 剛學(xué)寫的不好請(qǐng)大家見諒 #################################################################### def open_txt(): #打開TXT文本寫入數(shù)組 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的第一個(gè)元素 while i < len(passlist): del passlist[i] del list_passwed[i] except: return 0 ###################################### global passlist #聲明全局變量 passlist = [] #用戶名:anonymous 密碼為空 www_cj(www) #域名拆解 open_txt() #TXT導(dǎo)入數(shù)組 #passlist = list(set(passlist)) #python 列表去重 global list_passwed #列表去重,不打亂原來的順序 list_passwed=[] for i in passlist: if i not in list_passwed: list_passwed.append(i) ###################################### 遍歷數(shù)組組合出 密碼 I1 = 0 #得到list的第一個(gè)元素 while I1 < len(list_passwed): print "WWWWWWWWWWW",I1 if I1==len(list_passwed): break #退出循環(huán) I2 = 0 #得到list的第一個(gè)元素 while I2 < len(list_passwed): print "1111:",list_passwed[I1],"2222:",list_passwed[I2] I2 = I2 + 1 #二層 I1 = I1 + 1 #一層 ######################################
補(bǔ)充
# -*- coding: utf-8 -*- ''' 只使用與較小的文件,比較大的文件運(yùn)行時(shí)間長(zhǎng) ''' 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("源文件路徑","目標(biāo)文件路徑")
本文實(shí)例講述了python讀取TXT到數(shù)組及列表去重后按原來順序排序的方法。分享給大家供大家參考。
相關(guān)文章
Python實(shí)現(xiàn)mysql數(shù)據(jù)庫(kù)更新表數(shù)據(jù)接口的功能
這篇文章主要給大家介紹了關(guān)于Python如何實(shí)現(xiàn)mysql數(shù)據(jù)庫(kù)更新表數(shù)據(jù)接口功能的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧。2017-11-11Python計(jì)算素?cái)?shù)個(gè)數(shù)的兩種方法
本文主要介紹了Python計(jì)算素?cái)?shù)個(gè)數(shù)的兩種方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-05-05Python中Generators教程的實(shí)現(xiàn)
本文主要介紹了Python中Generators教程的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-02-02Python3的urllib.parse常用函數(shù)小結(jié)(urlencode,quote,quote_plus,unquot
這篇文章主要介紹了Python3的urllib.parse常用函數(shù),結(jié)合實(shí)例形式分析了urlencode,quote,quote_plus,unquote,unquote_plus等函數(shù)的相關(guān)使用技巧,需要的朋友可以參考下2016-09-09Python利用request庫(kù)實(shí)現(xiàn)翻譯接口
這篇文章主要為大家詳細(xì)介紹了Python如何利用request庫(kù)打造自己的翻譯接口,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2023-04-04Python之csv文件從MySQL數(shù)據(jù)庫(kù)導(dǎo)入導(dǎo)出的方法
今天小編就為大家分享一篇Python之csv文件從MySQL數(shù)據(jù)庫(kù)導(dǎo)入導(dǎo)出的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-06-06