Tkinter.Button(self, text='Pause', command=self.pause_program).grid(row=7, columnspan=2, rowspan=3)
def pause_program(self):
input("Press Enter to continue...")
time.sleep(2)
,然后在程序的其他部分下方。 其余程序从源中获取数据,想要实现一个“暂停并继续”按钮以通过仅按一下按钮并在需要时将其恢复回来来暂停程序。