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 could put answers in a list and call random.shuffle() on it:
import random
answers = [
"Open Systematic Information",
"Open Systems Interconnect",
"Organised Stairway Interweb",
"Open Safe Internet",
]
random.shuffle(answers)
for letter, answer in zip("ABCD", answers):
print("{}- {}".format(letter, answer))
Each time you run it, it may produce different output e.g.:
A- Organised Stairway Interweb
B- Open Systematic Information
C- Open Safe Internet
D- Open Systems Interconnect