파이썬 XML Pretty 출력하기
예제 xml.dom.minidom 은 xml 객체, xml 파일에서 dom 객체를 변환하기 위해 사용되는 모듈입니다. import xml.dom.minidom src_xml = 'jvvp.tistory.com' xml = xml.dom.minidom.parseString(src_xml) pretty_xml = xml.toprettyxml() print(src_xml) print(pretty_xml) 더보기 jvvp.tistory.com jvvp.tistory.com 파일에도 쓰고 읽어 봅니다. import xml.dom.minidom src_xml = 'jvvp.tistory.com' xml = xml.dom.minidom.parseString(src_xml) pretty_xml = xml.toprett..