I create Checkbutton
var = IntVar()
cb = Checkbutton(master, variable=var)
I can set and read status checkbutton with variable
var.set(1)
var.get()
I can set the status of a checkbutton via the checkbutton itself
cb.select()
cb.deselect()
How can I read the status of a checkbutton through a variable cb without variable var?