Graded A+
What is the name of the Python 2.x library to parse XML data? - xml.etree.ElementTree
What is the method to cause Python to parse XML that is stored in a string? - fromstring()
In this XML, which are the "simple elements"?
<people>
<person>
<name>Chuck</name>
<phone>303 4456</phone>
</person>
<person>
<name>Noah</name>
<phone>622 7421</phone>
</person>
</people> - name, phone
In the following XML, which are attributes?
<person>
<name>Chuck</name>
<phone type="intl">
+1 734 303 4456
</phone>
<email hide="yes" />
</person> - hide, type
In the following XML, which node is the parent node of node e
<a>
<b>X</b>