📜  如何打开 xml 文件元素树 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:04.136000             🧑  作者: Mango

代码示例2
import xml.etree.ElementTree as ET

tree = ET.parse('filename.xml') #this gets the file into a tree structure
tree_root = tree.getroot() #this gives us the root element of the file