radio button value in tkinter code example
Example 1: tkinter radio button
from tkinter import *
root = Tk()
i = IntVar()
r1 = Radiobutton(root, text="option 1", value=1, variable=i)
r2 = Radiobutton(root, text="option 2", value=2, variable=i)
"""
If both values where equal, when one of the buttons
are pressed all buttons would be pressed.
If a button is pressed its value is true, or 1.
If you want to acess the data from the
radiobuttons, use a if statment like
"""
if (i.get() ==1):
print("you picked option1")
else:
print("you picked option2")
r1.pack()
r2.pack()
root.mainloop()
Example 2: tkinter radio buttons
from Tkinter import *
master = Tk()
v = IntVar()
Radiobutton(master, text="One", variable=v, value=1).pack(anchor=W)
Radiobutton(master, text="Two", variable=v, value=2).pack(anchor=W)
mainloop()