My aim is to have it so it can randomise questions.
For example, the test starts and the first question could be question 8. The word Question is only
you can do simple one pulling information from files like so,
while count < 10:
wordnum = random.randint(0, len(questionsfile)-1)
print 'What is: ', answersfile[wordnum], ''
options = [random.randint(0, len(F2c)-1),
random.randint(0, len(answersfile)-1),random.randint(0, len(answersfile)-1)]
options[random.randint(0, 2)] = wordnum
print '1 -', answersfile[options[0]],
print '2 -', answersfile[options[1]],
print '3 -', answersfile[options[2]],
print '4 -', answersfile[options[3]]
answer = input('\nYou choose number ?: ')
if options[answer-1] == wordnum: