Python lxml XPath problem

Estou tentando imprimir / salvar o HTML de um determinado elemento a partir de uma página da Web.
Eu recuperei o XPath do elemento solicitado do firebu

Tudo o que desejo é salvar esse elemento em um arquivo. Parece que não consigo fazê-lo.
(tentei o XPath com e sem um/text() no fim

Eu apreciaria qualquer ajuda ou experiência passad
10x, David

import urllib2,StringIO
from lxml import etree

url='http://www.tutiempo.net/en/Climate/Londres_Heathrow_Airport/12-2009/37720.htm'
seite = urllib2.urlopen(url)
html = seite.read()
seite.close()
parser = etree.HTMLParser()
tree = etree.parse(StringIO.StringIO(html), parser)
xpath = "/html/body/table/tbody/tr/td[2]/div/table/tbody/tr[6]/td/table/tbody/tr/td[3]/table/tbody/tr[3]/td/table/tbody/tr/td/table/tbody/tr/td/table/tbody/text()"
elem = tree.xpath(xpath)


print elem[0].strip().encode("utf-8")

questionAnswers(2)

yourAnswerToTheQuestion