python實現文本去重且不打亂原本順序

來源:互聯網
上載者:User
代碼也是在網上找的,效率挺不錯的,特別適合字典檔案的去重

#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到數組及列表去重後按原來順序排序的方法。分享給大家供大家參考。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.