New to xml. Looking for XPath to search a xml file with python ElementTree format
<root>
<child>One</child>
<child>Two</child>
<child>Three</child>
</root>
to do search for child with "Two" and return true/false
if it was started off like
from elementtree import ElementTree
root = ElementTree.parse(open(PathFile)).getroot()
how can this be achieved