In [9]:
import requests

In [11]:
from bs4 import BeautifulSoup

In [37]:
r = requests.post('http://howstat.com/cricket/Quiz/Quiz.asp',data = {'cboCategory': 'J', 'txtAction': 'Start'})

In [30]:
s = BeautifulSoup(r.text, 'lxml')

In [51]:
question = x[0].text
answers = [x[1].text, x[2].text, x[3].text]
print(question, answers)


          What is England's lowest Test Match aggregate score?
           ['\r\n                  115\r\n                ', '\r\n                  127\r\n                ', '\r\n                  175\r\n                ']