在Python中,get_child()通常是指获取指定元素的子元素。这可以用于访问复杂数据结构,比如树。
import xml.etree.ElementTree as ET
# 创建一个XML元素
root = ET.Element("root")
child1 = ET.SubElement(root, "child1")
child2 = ET.SubElement(root, "child2")
# 使用get_child()方法获取子元素
children = root.getchildren()
for child in children:
print(child.tag)
输出结果为:
child1
child2
首先创建了一个名为root的XML元素,并使用ET.SubElement()方法创建了两个子元素child1和child2。然后使用get_child()方法获取了root元素的所有子元素,并使用for循环遍历打印了它们的标签。
温馨提示:答案为网友推荐,仅供参考