Python Tkinter Cerrar la ventana de la GUI

from tkinter import *
root=tk.Tk()
root.destroy()
Sleepy Stoat