import xml.dom.minidom d=xml.dom.minidom.Document() p=d.createElement("s") p.setAttribute("kogus", "2") p.setAttribute("sisu", "algus") d.appendChild(p) p2=d.createElement("s") p2.setAttribute("sisu", "V") p2.setAttribute("kogus", "1") p.appendChild(p2) p2a=d.createElement("s") p2a.setAttribute("sisu", "S") p2a.setAttribute("kogus", "1") p2.appendChild(p2a) print(d.toxml())