gpt4 book ai didi

python - 如何解析 XML 并获取特定节点属性的实例?

转载 作者:IT老高 更新时间:2023-10-28 11:58:32 26 4
gpt4 key购买 nike

我在 XML 中有很多行,我正在尝试获取特定节点属性的实例。

<foo>
<bar>
<type foobar="1"/>
<type foobar="2"/>
</bar>
</foo>

如何访问属性 foobar 的值?在这个例子中,我想要 "1""2"

最佳答案

我建议 ElementTree .同一个 API 还有其他兼容的实现,例如 lxml , 和 Python 标准库本身中的 cElementTree ;但是,在这种情况下,他们主要增加的是更快的速度——编程部分的易用性取决于 ElementTree 定义的 API。

首先从 XML 构建一个 Element 实例 root,例如与 XML函数,或者通过解析一个类似的文件:

import xml.etree.ElementTree as ET
root = ET.parse('thefile.xml').getroot()

ElementTree 中显示的许多其他方式中的任何一种.然后执行以下操作:

for type_tag in root.findall('bar/type'):
value = type_tag.get('foobar')
print(value)

输出:

1
2

关于python - 如何解析 XML 并获取特定节点属性的实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1912434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com