如何在xml数据中查找元素?

时间:2013-08-20 14:45:42

标签: xml

当我们在XML函数中有嵌套元素时,我们如何才能访问它们? 我用:

    import xml.etree.ElementTree as ET
    tree = ET.parse('country_data.xml')
    root = tree.getroot()
    for child in root:
       print(child.tag, child.attrib)

但它不起作用。

0 个答案:

没有答案