0

I am trying to pause a loop and then continue the loop after a button is pressed. I have a for loop that is fetching questions from a list and then display it for the user to answer,then continue when the user answers

how can I make the continue after the user clicks the button next. this is my code below

from tkinter import *
class exam:
    global nexq
    def __init__(self,master):
        self.master = master
        self.master.title("tuples inside Lists")
        self.master.geometry("300x300+0+0")
        self.master.resizable(False,False)
        self.panel = Frame(self.master,width=300,height=300,bg="brown")
        self.panel.pack_propagate(0)
        self.panel.pack(fill="both")
        self.ans = IntVar()
        self.board = Text(self.panel, width=40,height=10)
        self.board.grid(rowspan=2,columnspan=3 )
        self.opt1 = Radiobutton(self.panel,text="Nigeria",variable=self.ans,value=1,command=self.startexam)
        self.opt1.grid(row=5,column=0,sticky=W)
        self.opt2 = Radiobutton(self.panel,text="Ghana",variable=self.ans,value=2)
        self.opt2.grid(row=5,column=2,sticky=W)
        self.btnnext = Button(self.panel,text="next",command=self.nextq)
        self.btnnext.grid(row=20,column=0,sticky=W)

    def startexam(self):
        global nexq
        nexq = False
        self.ans.set(0)
        self.qstns = [('what is your name','john','philip','john'),
                      ('where do you stay','Abuja','lagos','lagos'),
                      ('what can you do','sing','program','program')]
        for qustn,optn1,optn2,ans in self.qstns:
            self.board.delete('1.0',END)
            self.board.insert(END,qustn)
            self.opt1.configure(text=optn1)
            self.opt2.configure(text=optn2)
            if not nexq:
                break
            else:
                continue



    def nextq(self):
        global nexq
        nexq = True
        return True
martineau
  • 119,623
  • 25
  • 170
  • 301
Johnbosco
  • 13
  • 3
  • Maybe with the use of `yield` in your loop? This is not exactly a duplicate, but the technique used in the answer to this question might help: https://stackoverflow.com/questions/55755322/sort-algorithm-visualization-how-to-pull-values-to-animate-the-canvas-from-ins – Reblochon Masque Jun 21 '19 at 02:35

1 Answers1

1

As mentioned by Reblochon, you can use a generator to achieve pause/resume on a function by using yield. To understand how yield works, I highly recommend you to read through the highest voted Python post on SO here.

Below is a minimum sample using your questions as data:

import tkinter as tk

root = tk.Tk()

q = tk.Label(root,text="Question")
b = tk.Spinbox(root)
q.pack()
b.pack()

def ask_question():
    qstns = [('what is your name','john','philip','john'),
             ('where do you stay','Abuja','lagos','lagos'),
             ('what can you do','sing','program','program')]
    for i in qstns:
        yield i[0], i[1:]

a = ask_question()

def get_next():
    try:
        start.config(text="Next question")
        question, answer = next(a)
        q.config(text=question)
        b["value"] = answer
    except StopIteration:
        start.config(text="No more questions!",state="disabled",relief="sunken")

start = tk.Button(root,text="Start",command=get_next)
start.pack()

root.mainloop()
Henry Yik
  • 22,275
  • 4
  • 18
  • 40