在 XML 文档中,通常需要检索特定节点属性的实例。考虑以下 XML 结构:
<foo> <bar> <type foobar="1"/> <type foobar="2"/> </bar> </foo>
目标是访问属性 foobar 的值,在本例中为“1”和“2”。
使用 Python 的 ElementTree 库提供了一个高效且简单的解决方案:
import xml.etree.ElementTree as ET # Parse the XML string or file into an Element instance root = ET.parse('thefile.xml').getroot() # Iterate through 'bar' tags and extract 'foobar' attribute values for type_tag in root.findall('bar/type'): value = type_tag.get('foobar') print(value)
此代码有效地访问并打印所需的属性值,从而产生以下结果输出:
1 2
ElementTree 提供了方便且强大的 API,用于解析和操作 XML 数据,从而能够高效检索节点属性实例。
以上是如何使用Python的ElementTree提取节点属性值?的详细内容。更多信息请关注PHP中文网其他相关文章!