The only way I found to bind multiple keys or combinations is to bind them separately:
root.bind("<Control-Alt-g>", close_app) root.bind("<F9>", close_app) # Remaining code root.mainloop()