You can override the closing protocol.
def on_close():
#custom close options, here's one example:
close = messagebox.askokcancel("Close", "Would you like to close the program?")
if close:
root.destroy()
root.protocol("WM_DELETE_WINDOW", on_close)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…