我使用python生成一个冗长而丑陋的XML字符串,我需要通过漂亮的打印机对其进行过滤以使其看起来更好.
我发现this post用于python漂亮的打印机,但是我必须将XML字符串写入要回读的文件以使用工具,如果可能的话我想避免使用这些工具.
什么python漂亮的工具可以在字符串上工作?
以下是如何从文本字符串解析为lxml结构化数据类型.
原文链接:https://www.f2er.com/xml/293029.htmlfrom lxml import etree xml_str = "<parent><child>text</child><child>other text</child></parent>" root = etree.fromstring(xml_str) print etree.tostring(root,pretty_print=True)
输出:
<parent> <child>text</child> <child>other text</child> </parent>