이 글에서는 Python에서 텍스트 파일의 내용을 일괄 수정하는 방법에 대한 관련 정보를 주로 소개합니다. 필요한 친구는
Python 일괄 파일 내용 대체 및 중첩 폴더 지원
import os path="./" for root,dirs,files in os.walk(path): for name in files: #print name if name.endswith(".html"): #print root,dirs,name filename=root+"/"+name f=open(filename,"r") filecontent="" line=f.readline() while line: l=line.replace(":/arcgis_js_api","/arcgisapi") filecontent=filecontent+l line=f.readline() f.close() f=file(filename,"w") f.writelines(filecontent) f.close()
이 글에서 소개한 Python에서 텍스트 파일의 내용을 일괄 수정하는 방법은 모두가 이해하고 있습니다. 궁금한 점이 있으면 메시지를 남겨주시면 편집자가 알려드리겠습니다. 즉시 모두에게 답장을 보내주세요!
Python에서 텍스트 파일의 내용을 일괄 수정하는 방법에 대한 자세한 설명은 PHP 중국어 사이트의 관련 기사를 참고해주세요!