如何使用Python创建包含特殊字符的xml属性?

时间:2016-04-04 14:28:36

标签: python-2.7 xml-parsing

我正在使用python创建xml文件,我需要创建属性 xml:id

我该怎么做?

1 个答案:

答案 0 :(得分:0)

尝试使用xml.dom.minidom模块

from xml.dom import minidom

doc = minidom.Document()

ele = doc.createElement("element")
doc.appendChild(ele)
ele.attributes['xml:id']= "something"

print (ele.toxml())