Python 이 같은 폴 더 아래 의 모든 txt 파일 을 통합 하 는 방법 예시

이 실례 는 Python 이 같은 폴 더 아래 의 모든 txt 파일 을 통합 하 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
수요 분석
폴 더 아래 의 모든 txt 파일 을 합 칩 니 다.



2.합병 효과


3.python 구현 코드

# -*- coding:utf-8*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
import os
import os.path
import time
time1=time.time()
##########################           txt################
def MergeTxt(filepath,outfile):
  k = open(filepath+outfile, 'a+')
  for parent, dirnames, filenames in os.walk(filepath):
    for filepath in filenames:
      txtPath = os.path.join(parent, filepath) # txtpath          
      f = open(txtPath)
      ##########    ##################
      k.write(f.read()+"
") k.close() print "finished" if __name__ == '__main__': filepath="D:/course/" outfile="result.txt" MergeTxt(filepath,outfile) time2 = time.time() print u' :' + str(time2 - time1) + 's'
실행 결과:
"D:\\Program Files\Python 27\\python.exe"D:/PhycharmProjects/learn 2017/여러 txt.py 통합
finished
총 소모 시간:0.000999927520752 s
Process finished with exit code 0
더 많은 Python 관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있 습 니 다.
본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기