I just started python and was trying to parse the xml file using ElementTree. But the problem is I have one tag with CDATA which is removed after tree.write.
So basically I had this tag
<content><![CDATA[eclipse.ver=1&encoding/ <project>=UTF-8${line.sep}]]></content>
which is change to
<content>eclipse.ver=1&encoding/<project>=UTF-8${line.sep}</content>
I tried google it but was not very helpful. So can anyone help me, how can I get exact same content within the tag??