标签: python lxml
请想象变量n中的XML节点。
n
如果我通过MSXML访问此节点,我可以获得具有.xml属性的节点的XML源,即n.xml将返回整个节点源。
.xml
n.xml
我怎么能用lxml做同样的事?
答案 0 :(得分:2)
使用.tostring() method:
.tostring()
from lxml import etree print etree.tostring(node)