■ Element 클래스의 attrib 속성을 사용해 어트리뷰트를 추가하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from xml.etree.ElementTree import Element, SubElement, dump noteElement = Element("note") noteElement.attrib["date"] = "20240506" toElement = Element("to") toElement.text = "Duke" noteElement.append(toElement) SubElement(noteElement, "from").text = "James" dump(noteElement) """ <note date="20240506"><to>Duke</to><from>James</from></note> """ |