我正在阅读来自 PyCon 2010 的 Asheesh Laroia 的“Scrape the Web”演示文稿,我对这一行的特定代码行有疑问:
title_element = parsed.getElementsByTagName('title')[0]
从功能:
def main(filename):
#Parse the file
parsed = xml.dom.minidom.parse(open(filename))
# Get title element
title_element = parsed.getElementsByTagName('title')[0]
# Print just the text underneath it
print title_element.firstChild.wholeText
我不知道该行末尾的“[0]”在执行什么角色。'xml.dom.minidom.parse' 是否将输入解析为列表?