我正在使用此文件在 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")
什么都没有打印出来。