简体   繁体   中英

How to continue a loop after a button has been clicked?

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

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()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM