将’xml:space’设置为’保留’Python lxml

前端之家收集整理的这篇文章主要介绍了将’xml:space’设置为’保留’Python lxml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在SVG文件中有一个文本元素,我使用lxml生成.我想保留这个元素中的空格.我创建了文本元素然后尝试.set()xml:space来保存,但我尝试的任何东西似乎都没有用.我可能在概念上遗漏了一些东西.有任何想法吗?
您可以通过显式指定与特殊xml:前缀关联的名称空间URI来实现(请参阅 http://www.w3.org/XML/1998/namespace).
from lxml import etree

root = etree.Element("root")
root.set("{http://www.w3.org/XML/1998/namespace}space","preserve")

print etree.tostring(root)

输出

<root xml:space="preserve"/>
原文链接:https://www.f2er.com/xml/292094.html

猜你在找的XML相关文章