Te traemos el hallazgo a este contratiempo, o por lo menos eso pensamos. Si tienes alguna pregunta coméntalo, que sin dudarlo te responderemos
Ejemplo 1: caja de cheques en tkinter
from tkinter import*
master = Tk()
var1 = IntVar()
Checkbutton(master, text="male", variable=var1).grid(row=0, sticky=W)
var2 = IntVar()
Checkbutton(master, text="female", variable=var2).grid(row=1, sticky=W)
mainloop()
Ejemplo 2: cómo obtener el botón de verificación de una lista
from Tkinter import*
root = Tk()
users =['Anne','Bea','Chris']for x inrange(len(users)):
l = Checkbutton(root, text=users[x][0], variable=users[x])print"l = Checkbutton(root, text="+str(users[x][0])+", variable="+str(users[x])
l.pack(anchor ='w')
root.mainloop()
Acuérdate de que tienes la opción de explicar si topaste tu atascamiento justo a tiempo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)