xml.dom.Document.createElement()

Document.createElement(tagName)

Create and return a new element node. The element is not inserted into the document when it is created. You need to explicitly insert it with one of the other methods such as insertBefore() or appendChild().

doc_python
2016-10-07 17:47:41
Comments
Leave a Comment

Please login to continue.