Something
public python v1 · immutableimport Tkinterapp = Tkinter.Tk()def show_state(): print "The state of the checkbutton is:", v.get()v = Tkinter.BooleanVar(app)c = Tkinter.Checkbutton(app, variable=v, onvalue=1, offvalue=0, command=show_state)c.pack()app.mainloop()