I have a python script that simply reads "input.xml" and copies into "output.xml" file. As showed in "output.xml", Python's Xpath generates ns0, ns1 tag. How to avoid these tags without using other xml libraries (eg. lxml)? 
Script:
import xml.etree.ElementTree as ET
fileName = "input.xml"
tree = ET.parse(template)
tree.write("output.xml")
Input.xml:
<Car>
     <brand xmlns = "www.car.com" xmlns:brand="www.bmw.com">
          <arg key="name" value="series 3" />
     </brand>
     <market xmlns = "www.ebay.com">
          <arg key="name" value="auto"/>
     </market>
</Car>
output.xml:
<Car xmlns:ns0="www.car.com" xmlns:ns1="www.ebay.com">
     <ns0:brand>
          <ns0:arg key="name" value="series 3" />
     </ns0:brand>
     <ns1:market>
          <ns1:arg key="name" value="auto" />
     </ns1:market>
</Car>