from xml.dom import minidom # parse an xml file by name mydoc = minidom.parse('items.xml') items = mydoc.getElementsByTagName('item') # one specific item ...
確定! 回上一頁