I'm really newbie in python. I need to write some string in existing xml file.
My XML strutcure is like this:
<koza>
<colors>
<color name="one" **value="#00FF00"** />
<color name="two" value="#a12345" />
<color name="three" value="#c2c145" />
<color name="four" value="#315a25" />
...
</colors>
</koza>
I only need to change value in one line, example, in first line change "#00FF00" to "#FFFFFF".
Is there a simple code to do this?
Thanks!