gpt4 book ai didi

python - 如何使用 ElementTree 递归迭代 Python 中的 XML 标签?

转载 作者:太空狗 更新时间:2023-10-29 16:59:54 26 4
gpt4 key购买 nike

我正在尝试使用 ElementTree 遍历树中的所有节点。

我做了类似的事情:

tree = ET.parse("/tmp/test.xml")

root = tree.getroot()

for child in root:
### do something with child

问题是 child 是一个 Element 对象而不是 ElementTree 对象,所以我无法进一步研究它并递归迭代它的元素。有没有一种方法可以对“根”进行不同的迭代,以便它迭代树中的顶级节点(直接子节点)并返回与根本身相同的类?

最佳答案

要遍历所有节点,请使用 iter ElementTree 上的方法,而不是根元素。

根是一个元素,就像树中的其他元素一样,只有它自己的属性和子元素的上下文。 ElementTree 具有所有元素的上下文。

例如,给定这个 xml

<?xml version="1.0"?>
<data>
<country name="Liechtenstein">
<rank>1</rank>
<year>2008</year>
<gdppc>141100</gdppc>
<neighbor name="Austria" direction="E"/>
<neighbor name="Switzerland" direction="W"/>
</country>
<country name="Singapore">
<rank>4</rank>
<year>2011</year>
<gdppc>59900</gdppc>
<neighbor name="Malaysia" direction="N"/>
</country>
<country name="Panama">
<rank>68</rank>
<year>2011</year>
<gdppc>13600</gdppc>
<neighbor name="Costa Rica" direction="W"/>
<neighbor name="Colombia" direction="E"/>
</country>
</data>

您可以执行以下操作

>>> import xml.etree.ElementTree as ET
>>> tree = ET.parse('test.xml')
>>> for elem in tree.iter():
... print elem
...
<Element 'data' at 0x10b2d7b50>
<Element 'country' at 0x10b2d7b90>
<Element 'rank' at 0x10b2d7bd0>
<Element 'year' at 0x10b2d7c50>
<Element 'gdppc' at 0x10b2d7d10>
<Element 'neighbor' at 0x10b2d7e90>
<Element 'neighbor' at 0x10b2d7ed0>
<Element 'country' at 0x10b2d7f10>
<Element 'rank' at 0x10b2d7f50>
<Element 'year' at 0x10b2d7f90>
<Element 'gdppc' at 0x10b2d7fd0>
<Element 'neighbor' at 0x10b2db050>
<Element 'country' at 0x10b2db090>
<Element 'rank' at 0x10b2db0d0>
<Element 'year' at 0x10b2db110>
<Element 'gdppc' at 0x10b2db150>
<Element 'neighbor' at 0x10b2db190>
<Element 'neighbor' at 0x10b2db1d0>

关于python - 如何使用 ElementTree 递归迭代 Python 中的 XML 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21074361/

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