我有一个代码:
response = urllib2.urlopen(url)
htmlparser = etree.HTMLParser()
tree = etree.parse(response, htmlparser)
result = tree.xpath(xpath)
# result return [<Element div at 0x2d903a0>]
# I want to view html string
我认为结果是对象。如何查看结果结构以访问我需要的返回值?
当我编写python代码时。我通常会得到像 <... at 0x325dc> 这样的回报。我不知道 <... at 0x325dc> 的值是多少。我该如何解决?