如何防止python中的字符引用?

时间:2018-07-03 09:08:54

标签: python

如何停止将“”变成“&”对于下面的代码?

>>> from xml.dom.minidom import Document
>>> doc=Document()
>>> name_element = doc.createElement('name')
>>> name_text = doc.createTextNode('"tom"')
>>> name_element.appendChild(name_text)
<DOM Text node "'"tom"'">
>>> name_element.toxml()
'<name>&quot;tom&quot;</name>'

0 个答案:

没有答案