私はコードをもっている:
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> の値がわかりません。どうすれば解決できますか?