私は持っています、
<parent id="1">
<child id="white"></child>
<child id="red"></child>
</parent>
<parent id="2">
<child id="green"></child>
<child id="gray"></child>
</parent>
この出力が必要です、
1
white
red
2
green
gray
これが私がやっている方法です、
parent = xmldoc.getElementsByTagName('parent')
for item in parent:
child = xmldoc.getElementsByTagName('child')
child_id = child.getAttribute('id')
for child_id in child:
print child_id
もちろん、私はそれを間違えていますが、これらの親IDをループして、各リストを個別に収集する方法がわかりません。助けていただければ幸いです。