我在 Python 3 中使用 tkinter 创建一个程序,但我被卡住了......我有无限循环,由按下按钮触发:
def task13():
while True:
#do stuff
...
button13 = Button(root, width=25, text="13", command=task13)
goButton.pack(side=LEFT,anchor="n")
如何在释放 button13 时终止 task13?是否有“键盘中断”代码或者我可以修改循环?