page = urlopen(req)
doc = parse(page).getroot()
table = doc.xpath('/html/body/div/div/div/table')
table
<Element table ...>
doc.xpath('/html/body/div/div/div/table/tr')
<Element tr ...>...
table.xpath('/tr')
[]
为什么不table.xpath('/tr')
产生相同的元素列表doc.xpath('/html/body/div/div/div/table/tr')
呢?