import xml.etree.ElementTree as ET tree = ET.parse('filename.xml') #this gets the file into a tree structure tree_root = tree.getroot() ...
確定! 回上一頁