如何防止 lxml prom 压缩元素?
具有以下Python代码:
>>> from lxml import etree
>>> root = etree.XML("<a><b></b></a>")
>>> etree.tostring(root)
'<a><b/></a>'
如何强制lxml使用“长”版本?
喜欢
>>> etree.tostring(root)
'<a><b></b></a>'
Having following Python code:
>>> from lxml import etree
>>> root = etree.XML("<a><b></b></a>")
>>> etree.tostring(root)
'<a><b/></a>'
How can I force lxml to use "long" version?
Like
>>> etree.tostring(root)
'<a><b></b></a>'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
混合也有效:
Mixing works as well:
你为什么想要?就 XML 数据模型而言,两者是等效的。
Why do you want to? Both are equivalent in terms of XML's data model.
来自文档
http://lxml.de/tutorial.html#serialization
from the docs
http://lxml.de/tutorial.html#serialisation