我正在使用这个文件浏览Python中的ElementList教程,所有操作都可以正常工作:
<?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>
我可以找到我想要的任何数据,其中根是数据。我在这里得到了这个:http://docs.python.org/2/library/xml.etree.elementtree.html
例如:
import xml.etree.ElementTree as ET
tree = ET.parse('test.xml')
root = tree.getroot()
for child in root:
print child.tag
print child.attrib
这会给:
country
{'name': 'Liechtenstein'}
country
{'name': 'Singapore'}
country
{'name': 'Panama'}
但是在xml文件中我必须阅读和使用我似乎无法获得我想要的任何数据。这是文件:http://pastebin.com/b5bwrSFU
如果我运行相同的代码,我会得到:
{http://clish.sourceforge.net/XMLSchema}VIEW
{'depth': '1', 'prompt': '${KHOSTNAME}(config-if)# ', 'name': 'configure-range-view'}
{http://clish.sourceforge.net/XMLSchema}VIEW
{'name': 'configure-view'}
我似乎无法从configure-view
下面获得任何数据?
我也尝试过:
for neighbor in root.iter('VIEW'):
print neighbor.attrib
for i in root.findall('COMMAND'):
print i
rank = i.find('help').text
name = i.get('name')
print name, rank
并更改根目录:
root = ET.Element("COMMAND")
什么都没打印出来。