python 中的 Expat xml 解析器
在 python 中使用 expat xml 解析器时,如何将解析后的 xml 数据存储在字符串、文件或任何数据结构中。请告诉我一种方法来完成如何解析和使用 xml 数据的节点。
When using expat xml parser in python, how can I get it store the parsed the xml data in a string or in a file or in any data structure. Please show me a way to accomplish how to parse and use the nodes of the xml data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您可以使用 xml.etree.[c]ElementTree 时,为什么还要使用像 expat 解析器这样的低级接口?它为您创建一棵元素(节点)树。元素具有 tag、text 和 tail 属性,并包含将属性名称映射到值的字典以及子元素列表。
请查看 xml.etree.ElementTree 的 Python 文档和此附加信息。
Why are you using a low-level interface like the expat parser when you can use xml.etree.[c]ElementTree? It creates a tree of elements (nodes) for you. Elements have tag, text, and tail attributes and contain a dict that maps attribute names to values, and a list of child elements.
Have a look at the Python documentation for xml.etree.ElementTree, and this additional information.