当我们在 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)
但它不起作用。
当我们在 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)
但它不起作用。