Chilkat2-Python
Chilkat2-Python
Setting XML Tag and Content
See more XML Examples
Demonstrates how to set the tag and content of an XML node.The following XML sample code produces this output:
<abc>123</abc>
Chilkat Chilkat2-Python Downloads
import chilkat2
xml = chilkat2.Xml()
xml.Tag = "abc"
xml.Content = "123"
print(xml.GetXml())