我的xml文件显示为:
<A>
<B>some text</B>
<B>other text</B>
<B>more text</B>
</A>
我想要做的是从xml中删除第二个<B></B>
。我不知道它有什么文字。但我有<B></B>
的索引,比如index = 1,这意味着我要删除第二个元素(或节点)。
我有这样的代码:
F = open('example.xml')
self.tree = parse(F)
self.root = self.tree.getroot()
F.close()
所以在这种情况下我要删除的是self.root[1]
。
如何使用ElementTree实现?
编辑:让我的问题更加明确和具体。
答案 0 :(得分:6)
In [1]: import xml.etree.ElementTree as ET
In [2]: xmlstr=\
...: """
...: <A>
...: <B>some text</B>
...: <B>other text</B>
...: <B>more text</B>
...: </A>
...: """
In [3]: tree=ET.fromstring(xmlstr)
In [4]: tree.remove(tree.findall('.//B')[1])
答案 1 :(得分:2)
你们不是直截了当的。我将我的知识与答案结合在一起并得出结论:
for i, child in enumerate(self.root):
if path == i:
self.root.remove(child)
break
其中path
是我要删除的项目的索引。