我只是想获取一些XML文件的值,但我无法得到任何东西。
<?xml version="1.0" ?>
<clasif>
<estacion>Estacion</estacion>
<ncamaras>1</ncamaras>
<fph>1</fph>
<tratamiento>3</tratamiento>
<finicio>17/07/2011</finicio>
<ffin>17/07/2011</ffin>
<hinicio>04</hinicio>
<hfin>06</hfin>
</clasif>
这是我访问值的代码:
from lxml import etree
doc = etree.parse ( 'clasif.xml' )
root = doc.getroot()
elem= doc.xpath ('//estacion')
我做错了什么?