- 论坛徽章:
- 1
|
import xml.etree.ElementTree as ET
country_data_as_string="""<?xml version="1.0"?>
<data>
<country name="Liechtenstein">
<rank>1</rank>
<year>2008</year>
<gdppc>141100</gdppc>
<neighbor name="Austria" direction="E"/>
<neighbor name="Switzerland" direction="W"/>
</country>
<country name="Singapore">
<rank>4</rank>
<year>2011</year>
<gdppc>59900</gdppc>
<neighbor name="Malaysia" direction="N"/>
</country>
<country name="Panama">
<rank>68</rank>
<year>2011</year>
<gdppc>13600</gdppc>
<neighbor name="Costa Rica" direction="W"/>
<neighbor name="Colombia" direction="E"/>
</country>
</data>
"""
tree = ET.parse('country_data.xml')
root = tree.getroot()
root=ET.fromstring(country_data_as_string)
for rank in root.iter('rank'):
new_rank= int(rank.text) + 1
rank.text = str(new_rank)
rank.set('updated','yes')
tree.write('output.xml')
修改后,rank后边的数据还是没有变? |
|