栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

从已解析的XML树中删除元素会中断迭代

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

从已解析的XML树中删除元素会中断迭代

问题是您要从要迭代的对象中删除元素,当删除元素时,其余元素会发生移动,因此最终可能会删除不正确的元素:

一个简单的解决方案是遍历树的副本或使用 reversed

复制:

 def processGroup(group):    # creates a shallow copy so we are removing from the original    # but iterating over a copy.     for e in group[:]:        if e.tag != 'a': group.remove(e) showGroup(group,'removed <' + e.tag + '>')

反转:

def processGroup(group):    # starts at the end, as the container shrinks.    # when an element is removed, we still see    # elements at the same position when we started out loop.    for e in reversed(group):        if e.tag != 'a': group.remove(e) showGroup(group,'removed <' + e.tag + '>')

使用复制逻辑:

In [7]: tree = ET.parse('test.xml')In [8]: root = tree.getroot()In [9]: for group in root:   ...:         processGroup(group)   ...:     removed <b>  len=2<group>   <a>   <c></group>removed <c>  len=1<group>   <a></group>

您也可以使用

ET.tostring
for循环代替:

import xml.etree.ElementTree as ETdef show_group(group,s):    print(s + '  len=' + str(len(group)))    print(ET.tostring(group))def process_group(group):    for e in group[:]:        if e.tag != 'a': group.remove(e) show_group(group, 'removed <' + e.tag + '>')tree = ET.parse('test.xml')root = tree.getroot()for group in root.findall(".//group"):    process_group(group)


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/640617.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号