I have to read the xml node \"name\" from the following XML, but I don\'t know how to do it.
Here is the XML:
import xml.etree.ElementTree as ET tree= ET.parse('name.xml') root= tree.getroot() print root[0][0].text