Trying to print out the entire element retrieved from lxml.
from lxml import html
import requests
page=requests.get("http://finance.yahoo.com/q?s=INTC")
qtree = html.fromstring(page.content)
quote = qtree.xpath('//span[@class="time_rtq_ticker"]')
print 'Shares outstanding', Shares
print 'Quote', quote
The Output I get is
Quote [<Element span at 0x1044db788>]
But I'd like to print out the element for troubleshooting purposes.