파일2 Python - XML 생성/선택, 쉬운 예제( Element, SubElement, insert ) 실행환경 Python3 VS Code Import xml library xml 라이브러리는 python3의 Core library 이다. # -*- coding:utf-8 -*- from xml.etree.ElementTree import Element, SubElement , dump, indent 다음과 같은 xml을 만들어 보자. xml 은 element 로 이루어져있다. element 는 여러 attribute 를 갖는데 python xml 라이브러리에서 Element 클래스를 사용하여 생성할 수 있다. 루트 엘리먼트 생성 root_el = Element("FRUITS" , {"DESCRIPTION":"FRUIT SCHEME"}) 위와 같이, FRUITS를 엘리먼트로 선언하고 name-value .. 2021. 10. 17. Python - 초간단 디렉토리 및 파일 생성, 복사하기 ! 들어가며.. Python 내장 API, os와 shutil을 사용하여 디렉토리 생성부터 파일 생성, 카피까지 다루어본다. 디렉토리 생성/삭제 os 패키지를 사용하여 디렉토리 생성/삭제 처리 import os root_dir = 'C:/python_test' os.mkdir(root_dir) os.mkdir은 하위디렉토리 생성 불가, os.makedirs로 생성 os.mkdir('C:/A/B/C') # Fail os.makedirs('C:/A/B/C') # Success 위 root_dir 디렉토리가 정상 생성되었는지 os.path.isdir 로 확인 os.path.isdir(root_dir) # True # 디렉토리 삭제 os.rmdir(root_dir) # 삭제 후 디렉토리 확인 os.path.isdi.. 2021. 1. 11. 이전 1 다음