how to make an element with python xml module code example
Example 1: javascript create element with attributes
var element = document.createElement("span");
element.setAttribute("style", "color: red");
document.body.appendChild(element);
Example 2: python elementtree load from string
from xml.etree.ElementTree import XML, fromstring
myxml = fromstring(text)