Here is my code:
from lxml.html import fromstring
#code
print fromstring(s).xpath('/html/body/div[3]/div/div[2]/div/form/input[4]')
Ouput is [<InputElement 2946d20 name='question' type='hidden'>]
How can I output the value? Any attribute for this? Thank you.