Crie um documento SVG / XML sem o namespace ns0 usando o Python ElementTree [duplicado]

Esta pergunta já tem uma resposta aqui:

Salvando arquivos XML usando o ElementTree 4 respostas

Estou construindo um documento SVG com ElementTree no Python 2.7. Aqui está o código:

from xml.etree import ElementTree as etree

root = etree.XML('<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"></svg>')
root.append(etree.Element("path"))
root[0].set("d", "M1 1 L2 2 Z")
print etree.tostring(root, encoding='iso-8859-1')

Isso gera a saída:

<?xml version='1.0' encoding='iso-8859-1'?>
<ns0:svg xmlns:ns0="http://www.w3.org/2000/svg" height="100%" version="1.1" width="100%"><path d="M1 1 L2 2 Z" /></ns0:svg>

Isso não analisa como SVG válido. Como posso remover o namespace ns0?

questionAnswers(2)

yourAnswerToTheQuestion