here's the issue I'm thinking of:
I have a number of similar widgets in the frame(e.g. Lables). I update them every iteration of the algorithm (using root.update()
in the relevant function. What I'd like to know, is how to loop through each Label.
Of course, they were created with something like
self.var1=IntVar()
self.lab1=Label(frame,textvariable=self.var1)
self.lab1.grid()
So each of the lables are named lab1,lab2, etc. I'm quite sure there should either be a better way of naming them, so that I don't have to call each name explicitly, or somehow loop though them.
list1=[self.var1,self.var2]
and then loop throughlist1[list]
? – Megrim