netdzb 当前离线
上尉
TOP
brim 当前离线
三级士官
from xml.etree import ElementTree doc = ElementTree.parse("20200922.xml") for e in doc.findall("track"): for a in e.findall("title"): print(a.text) for f in e.findall("location"): print(f.text)复制代码