Python 사전 중복 제거 방법 예시

이 글 은 Python 이 사전 을 실현 하여 중복 을 제거 하 는 방법 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

#!/usr/bin/env python
# encoding: utf-8
#       
import sys
import os
import platform
try:
  pass 
except:
  print '''you have something wrong this is a simple jiaoben '''
  sys.exit()
why = 'why.txt'
for i in xrange(len(sys.argv)):
  if(i>=1):
    other = sys.argv[i]
    if os.path.exists(other):
      pass
    else:
      print other + ' file not find'
      sys.exit()
    if 'Windows' in platform.system():
      os.system("type "+other+" >> "+why)
    else:
      os.system("cat "+other+" >> "+why)
yuan = open('why.txt','r')
dirc = open('whynot.txt','w')
for line in set(yuan.readlines()):
  if line == '' or line == '\r
': pass else: dirc.writelines(line)
아주 간단 한 사고방식 으로 파일 을 why.txt 에 넣 고 whynot.txt 를 다시 가 져 옵 니 다.
용법:quchong.py 1.txt 2.txt 3.txt 등등
PS:본 사이트 에는 비교적 간단 하고 실 용적 인 온라인 텍스트 중복 도구 가 두 가지 있 습 니 다.여러분 께 추천 합 니 다.
온라인 중복 제거 도구:
http://tools.jb51.net/code/quchong
온라인 텍스트 중복 도구:
http://tools.jb51.net/aideddesign/txt_quchong
더 많은 파 이 썬 관련 내용 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.
본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기