<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<?xml-stylesheet href="Famille.xsl" type="text/xsl"?><HF_DOCUMENT>
<Data>
<CodeFamille>12 BIS</CodeFamille>
<Libelle>12 bis</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>3700744900020</CodeFamille>
<Libelle>BALLON GONFLABLE</Libelle>
<Livre>0</Livre>
</Data>
<Data>
<CodeFamille>4634510541685140</CodeFamille>
<Libelle>AKATA</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>707003</CodeFamille>
<Libelle>Hacomo</Libelle>
<Livre>0</Livre>
</Data>
<Data>
<CodeFamille>9782756076430</CodeFamille>
<Libelle>Draw tome 2</Libelle>
<Livre>0</Livre>
</Data>
<Data>
<CodeFamille>ACCESSOIRE</CodeFamille>
<Libelle>Figurine</Libelle>
<Livre>0</Livre>
</Data>
<Data>
<CodeFamille>AKIKO</CodeFamille>
<Libelle>Akiko</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>AKILEOS</CodeFamille>
<Libelle>Akileos</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>AKUMA</CodeFamille>
<Libelle>Akuma</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ALBIN MICHEL</CodeFamille>
<Libelle>Albin Michel</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ALIMENTATION</CodeFamille>
<Libelle>Alimentation 5.5</Libelle>
<Livre>0</Livre>
</Data>
<Data>
<CodeFamille>AMALTHEE</CodeFamille>
<Libelle>Amalthee</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ANIME MANGA PRESSE</CodeFamille>
<Libelle>Anime Manga Presse</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ANKAMA</CodeFamille>
<Libelle>Ankama</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ARTEFAC</CodeFamille>
<Libelle>Artefac</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ASIAN DISTRICT</CodeFamille>
<Libelle>Asian district</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ASSIMIL</CodeFamille>
<Libelle>Assimil</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ASUKA</CodeFamille>
<Libelle>ASUKA</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ATOMIC CLUB</CodeFamille>
<Libelle>Atomic club</Libelle>
<Livre>1</Livre>
</Data>
<Data>
<CodeFamille>ATRABILE</CodeFamille>
<Libelle>Atrabile</Libelle>
<Livre>1</Livre>
</Data>
...
</HF_DOCUMENT>
当我运行一个简单的循环以查看XML文件时,我可以找到每个子级,总共203个。
在所有这些孩子中,我要删除那些<Livre>0</Livre>
代表总计63个孩子。
我的问题是,当我使用简单条件运行相同的循环以仅删除那些遵守条件的人时,我无法删除所有条件,只有43人被删除。
<Data>
<CodeFamille>9782756076430</CodeFamille>
<Libelle>Draw tome 2</Libelle>
<Livre>0</Livre>
</Data>
...
<Data>
<CodeFamille>ALIMENTATION</CodeFamille>
<Libelle>Alimentation 5.5</Libelle>
<Livre>0</Livre>
</Data>
例如停留期间的那些节点。
这是我的代码:
tree = ET.parse("test.xml")
root = tree.getroot()
for child in root:
if child.find('Livre').text != "1":
root.remove(child)
tree.write("output.xml")
答案 0 :(得分:2)
像这样更改for循环,以使其遍历列表,然后删除单个元素不会引起混乱。
for child in list(root):
if child.find('Livre').text != "1":
root.remove(child)