how to get value of check box tkinter code example
Example: 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()