from tkinter import Tk from tkinter import Button ablak = Tk() gomb = Button(ablak, text="Kilép", command=ablak.quit) gomb.pack() ablak.mainloop()