#!/usr/bin/python # Import import xml.etree.ElementTree as ET import sys def removeNS(tag) : if tag.find('}') == -1 : return tag else: ...
確定! 回上一頁