import xml.etree.ElementTree root=xml.etree.ElementTree.parse('testXml.xml') book=root.findall('person') for book_list in book: for note in book_list: ...
確定! 回上一頁