Re: [Tutor] Lots of variables

2005-08-07 Thread Alan G
> I am trying to write a gui that has a lot of checkboxes. It is over > 200 > different ones. I use a for statement to generate: > >ver = 200 >for i in ['Car','House','Boat','Plane']: >self.fra26_che01p = Checkbutton (self.fra26) >self.fra26_che01p.place(in_

Re: [Tutor] Lots of variables

2005-08-06 Thread Kent Johnson
Øyvind wrote: > Hello. > > I am trying to write a gui that has a lot of checkboxes. It is over 200 > different ones. I use a for statement to generate: > > ver = 200 > for i in ['Car','House','Boat','Plane']: > self.fra26_che01p = Checkbutton (self.fra26) >