以下のコンテンツでxmlを解析しようとしています
<File version="5.6">
<Parent name="A">
<Child name="a"/>
<Child name="b"/>
</Parent>
<Parent name="B">
<Child name="c"/>
<Child name="d"/>
</Parent>
<Parent name="C">
<Child name="e"/>
<Child name="f"/>
</Parent>
</File>
そして、私は次のコードを使用しました
for child in tree.getroot().findall('./Parent/Child')
print child.attrib.get("name")
親の名前なしで子供の名前をすべて出力するだけです。このように各子供の関連する親の名前を印刷できますか?
A has a b
B has c d
C has e f