import tkinter as tk r = tk.Tk() r.title('Testing Button Widget') # After pressing button our code will be stop button = tk.Button(r, text='Stop', width=25, command=r.destroy) button.pack() r.mainloop()