单击按钮后如何继续循环?

时间:2019-06-21 01:32:46

标签: python python-3.x tkinter

我试图暂停循环,然后在按下按钮后继续循环。 我有一个for循环,该循环从列表中提取问题,然后将其显示给用户回答,然后在用户回答时继续

在用户单击下一步按钮后,如何继续操作。 这是我的下面的代码

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

1 个答案:

答案 0 :(得分:0)

如Reblochon所述,您可以使用生成器通过使用yield来实现函数的暂停/恢复。要了解yield的工作原理,强烈建议您通读SO here上获得最高投票的Python帖子。

以下是使用您的问题作为数据的最小样本:

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()
相关问题