Answers for "checkboxes output text tkinter"

2

python tkinter get value of checkbox

from tkinter import *

root = Tk()

value = IntVar()

example = Checkbutton(root, variable=value)
example.pack()

# 1 = clicked
# 0 = not clicked
print(value.get())

root.mainloop()
Posted by: Guest on January-02-2021
3

chech box in tkinter

from tkinter import *
master = Tk()
var1 = IntVar()
Checkbutton(master, text="male", variable=var1).grid(row=0, sticky=W)
var2 = IntVar()
Checkbutton(master, text="female", variable=var2).grid(row=1, sticky=W)
mainloop()
Posted by: Guest on May-05-2020
2

print textbox value in tkinter

result=textExample.get("1.0","end")
print(result)
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language