Get all children of specific node in Python
问题 I have the following example.xml structure: <ParentOne> <SiblingOneA>This is Sibling One A</SiblingOneA> <SiblingTwoA> <ChildOneA>Value of child one A</ChildOneA> <ChildTwoA>Value of child two A</ChildTwoA> </SiblingTwoA> </ParentOne> <ParentTwo> <SiblingOneA>This is a different value for Sibling one A</SiblingOneA> <SiblingTwoA> <ChildOneA>This is a different value for Child one A</ChildOneA> <ChildTwoA>This is a different value for Child Two A</ChildTwoA> </SiblingTwoA> </ParentTwo>