使用xml.etree.ElementTree查找元素[NEWBIE]

时间:2019-08-14 21:01:29

标签: python xml

我正在解析此文件:https://www.crossref.org/xml-samples/article_with_references.xml,看来我听不懂https://docs.python.org/2/library/xml.etree.elementtree.html

如果

for child in root.getchildren():
    print(child.tag)

结果:

{schema}head
{schema}body

为什么:

root.find('head')

没有结果?

我真的需要写

root.find('{schema}head')

还是有一种方法可以避免重复{schema}而只写head

0 个答案:

没有答案