Check buttons, the hard way (without variables) : Checkbutton : Tkinker PYTHON TUTORIALS


PYTHON TUTORIALS » Tkinker » Checkbutton »

 

Check buttons, the hard way (without variables)


Check buttons, the hard way (without variables)
from Tkinter import *      
states = []
def onPress(i):                        
    states[i= not states[i]          
     
root = Tk()
for i in range(10):
    chk = Checkbutton(root, text=str(i), command=(lambda i=i: onPress(i)) )
    chk.pack(side=LEFT)
    states.append(0)
root.mainloop()
print states



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Tkinker
» Checkbutton