I am preparing for my a+ exams, and am turning all of my notes into a test. I plan on doing this in python, of course. But, I am a little lost at what would be best. Should I create each question as a specific function, calling the next question function when i am done with that question? Or should I create one function to handle the questions, and functions for everything else? My plan for the format of the test is such:
present the question.
prompt the user to press enter when ready for answer
user presses enter
clear screen and begin again
this will go until there are no more questions left to ask, in which case the screen will clear and ask if you want to study again or quit.
thank you for your help.