Python Tkinter button event handling example


In this program, you will learn how to create a Tkinter button event handling example in Python.


b1 = Button(tk, text="Click", command=display).place(x=100, y=100)

Example: How to create Tkinter button event handling example in Python

from tkinter import *
from tkinter import messagebox


def display():
    messagebox.showinfo("Hello", "how are you today!")


tk = Tk()
tk.geometry("600x500")
tk.title("Xiith.com")
b1 = Button(tk, text="Click", command=display).place(x=100, y=100)
tk.mainloop()

Output:

tkinter button event handling