Load XML from a string into an ElementTree. from xml.etree import ElementTree. root = ElementTree.fromstring("<root><a>1</a></root>") ElementTree.dump(root) ...
確定! 回上一頁