Hi.
So, I'm coding this GUI into a sort of quiz. I'm not sure how to explain what I plan to do so I will write it out in a pseudo code. I know this isn't the most efficient way at all to do this, but I'm just focused on getting this thing to work.
def main():
"draw window"
def round1():
ask question1
if correct:
go to round2()
ask question2
if correct:
go to round2()
Maybe you can see what I'm doing here, but basically what I want to know is, where would I place "def round2()" so that the command in "round1()" will know where to go?
I'm not too sure about all these multiple functions defs so if you could please let me know what would be the easiest way to connect the two different functions, I would greatly appreciate it. Let me know if you need anymore information.