我正在解析此文件: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
?