import xml.etree.ElementTree as ET # 從檔案載入並解析XML 資料 tree = ET.parse('country_data.xml') root = tree.getroot() # 從字串中取得並解析XML 資料 root ...
確定! 回上一頁