Python Button code example
Example 1: how to add button in tkinter
from tkinter import *
window = Tk()
def got_clicked():
print("I got clicked!")
my_button = Button(text="Click me", command=got_clicked)
my_button.pack()
window.mainloop()
Example 2: how to find the text inside button in tkinter
my_text = my_button.cget('text')
Example 3: how to make a button in python
import tkinter as tk
def write_slogan():
print("Tkinter is easy to use!")
root = tk.Tk()
frame = tk.Frame(root)
frame.pack()
button = tk.Button(frame,
text="QUIT",
fg="red",
command=quit)
button.pack(side=tk.LEFT)
slogan = tk.Button(frame,
text="Hello",
command=write_slogan)
slogan.pack(side=tk.LEFT)
root.mainloop()
Example 4: python button tkinter
from tkinter import *
wow = Tk()
def ree(hi):
print(hi)
w = Button ( master=wow, command=ree('hi'), text="hi" )
Output:
Tkinter:
______
[ hi ] <--- Button
------
Shell:
hi <--- on button pressed
Example 5: how to create a button python
import Tkinter
import tkMessageBox
top = Tkinter.Tk()
def helloCallBack():
tkMessageBox.showinfo( "Hello Python", "Hello World")
B = Tkinter.Button(top, text ="Hello", command = helloCallBack)
B.pack()
top.mainloop()
Example 6: add button python
from tkinter import *
master = Tk()
def closewindow():
exit()
button = Button(master, text="close window", command=closewindow)
button.pack()
mainloop()