猿问

解析命名空间 XML 的问题。显示为空。在 Python 中

我的 XML 文件可在此处获得。虽然我能够从这个文件中获取根节点及其子节点。但是,我无法得到我需要的那个。我想获取 <ce:section-title>Methods</ce:section-title> 我已经尝试过 xml 和 lxml 包的内容。


当我使用以下内容时,


 tree = lxml.etree.parse(fname) #fname is xml filename

 root= tree.getroot()


print(root[5].findall("ce:section-title",root.nsmap)

它只是给了我 null [] 括号。当我使用以下命令时,它给出了相同的空括号:


for item in tree.iter('{http://www.elsevier.com/xml/ja/dtd}ce:section-title'):

    print(item)

我确实尝试使用此处提供的解决方案来解决,但此代码出现以下错误:


ns = {"ce":"http://www.elsevier.com/xml/common/dtd"}

print(root.findall("ce:title", ns).text)

AttributeError: 'NoneType' 对象没有属性 'text'


任何方向都会有所帮助


犯罪嫌疑人X
浏览 268回答 1
1回答

梵蒂冈之花

它应该与findall(.//ce:section-title, root.nsmap).使用.//前置,您正在搜索section-title上下文节点下所有级别的后代。使用findall(ce:section-title, root.nsmap),只能定位直接子元素。例子:from lxml import etreetree = etree.parse("data.xml")&nbsp; # Your XMLroot = tree.getroot()for e in root.findall(".//ce:section-title", root.nsmap):&nbsp; &nbsp; print(e.text)输出:AbstractKeywordsIntroductionMaterials and methodsResultsThe appearing species by taxonList of regional appearing speciesDiscussionAcknowledgmentsReferences
随时随地看视频慕课网APP

相关分类

Python
我要回答