python 中的 Expat xml 解析器

发布于 2024-11-09 16:37:24 字数 96 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光与爱终年不遇 2024-11-16 16:37:24

当您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文