Hi guys , I have made a board game and i want to get Questions and answers as MCQ’s . I have made a list but when i run my boardgame it shows all the questions and answers . i want it to show me ONE question AND answer from the list , can someone help me plz?
this is my list
pythonQuestions = [
pythonFixOne , pythonFixTwo, pythonFixThree, pythonFixFour, pythonFixFive,
pythonFillOne, pythonFillTwo, pythonFillThree, pythonFillFour, pythonFillFive,
pythonStateOne, pythonStateTwo, pythonStateThree, pythonStateFour, pythonStateFive,
pythonAnswerOne, pythonAnswerTwo, pythonAnswerThree, pythonAnswerFour, pythonAnswerFive
]
if questionScreen:
fill(255, 255, 255)
noStroke()
rect(1030, 25, 370, 600)
fill(0)
textSize(13)
text(str(pythonQuestions), 1030, 25, 370, 600)