xml.etree.ElementTree — The ElementTree XML API 中文翻譯
阿新 • • 發佈:2019-02-14
>>> root[0][1].text
'2008'
1.3. 尋找節點
Element擁有一些方法,用來遞迴遍歷元素。比如: Element.iter():Element.findall(),在當前元素的子元素中尋找擁有特定標籤的所有元素。>>> for neighbor in root.iter('neighbor'): ... print neighbor.attrib ... {'name': 'Austria', 'direction': 'E'} {'name': 'Switzerland', 'direction': 'W'} {'name': 'Malaysia', 'direction': 'N'} {'name': 'Costa Rica', 'direction': 'W'} {'name': 'Colombia', 'direction': 'E'}
Element.find(),和findall()類似,但只找第一個符合條件的。 示例程式碼中出現的Element.text用來獲得元素的文字內容,Element.get()用來獲得元素的屬性
學習更多高階用法,請看XPath。>>> for country in root.findall('country'): ... rank = country.find('rank').text ... name = country.get('name') ... print name, rank ... Liechtenstein 1 Singapore 4 Panama 68
1.4.修改XML檔案
ElementTree提供了簡單的方式用來建立XML文件,並將它儲存到檔案中。使用ElementTree.write()即可。 Element物件中,可直接修改他的欄位(Element.text),可加入或修改屬性(Element.set()),新增子元素(Element.append()) 執行下面的示例程式碼,將給每個國家的rank加1,並且為rank元素新增‘updated’屬性:執行效果:>>> 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')
<?xml version="1.0"?>
<data>
<country name="Liechtenstein">
<rank updated="yes">2</rank>
<year>2008</year>
<gdppc>141100</gdppc>
<neighbor name="Austria" direction="E"/>
<neighbor name="Switzerland" direction="W"/>
</country>
<country name="Singapore">
<rank updated="yes">5</rank>
<year>2011</year>
<gdppc>59900</gdppc>
<neighbor name="Malaysia" direction="N"/>
</country>
<country name="Panama">
<rank updated="yes">69</rank>
<year>2011</year>
<gdppc>13600</gdppc>
<neighbor name="Costa Rica" direction="W"/>
<neighbor name="Colombia" direction="E"/>
</country>
</data>
刪除節點使用Element.remove(),下面示例程式碼的作用是:刪除所有rank大於50的國家: