SyntaxFix
Write A Post
Hire A Developer
Questions
In case anyone wants to bind their Escape button to closing the entire GUI:
master = Tk() master.title("Python") def close(event): sys.exit() master.bind('<Escape>',close) master.mainloop()