人生苦短,我学python之python xml数据解析

Posted w770762632

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了人生苦短,我学python之python xml数据解析相关的知识,希望对你有一定的参考价值。

<?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>

>>> os.getcwd()
‘D:\workspace\testpython‘
>>> import xml.etree.ElementTree as ET
>>> tree = ET.parse(‘test.xml‘)
>>> root = tree.getroot()
>>> print root
<Element ‘data‘ at 0x1d2a8b0>
>>> print tree
<xml.etree.ElementTree.ElementTree object at 0x01D2A9D0>
>>> root.tag
‘data‘
>>> root.attrib
{}
>>> #遍历子节点
>>> for child in root:
print child.tag,child.attrib


country {‘name‘: ‘Liechtenstein‘}
country {‘name‘: ‘Singapore‘}
country {‘name‘: ‘Panama‘}
>>> root[0].text
‘ ‘
>>> root[0][1].text
‘2008‘
>>> root[1][3].text
>>> root[1][2].text
‘59900‘

以上是关于人生苦短,我学python之python xml数据解析的主要内容,如果未能解决你的问题,请参考以下文章

人生苦短,我学python之python MD5加密

人生苦短,我学python之python 字符串的魔法

NO 3 ,人生苦短,我学python之python 元祖tuple魔法

人生苦短,我学python

人生苦短,我学python之python+selenium 随机生成手机号码和身份证

人生苦短 我学python之OldBoy21天入门_day01·Python基础语法