[Solved] How to get the text of Checkbuttons?
Instead of overwriting the same variable, cb, try using an iterable type such as dictionary. You should also need to be attaching the value of Checkbutton to a tkinter variable class, such as BooleanVar, in order to easily track its status & value. The code below produces a GUI that re-writes Text each time a … Read more