Re: Lists in classes
Thanks for all the replies, very impressive. Got it now. Jeremy. On Jul 12, 4:23 pm, Jeremy Lynch <[EMAIL PROTECTED]> wrote: > Hello, > > Learning python from a c++ background. Very confused about this: > > > class jeremy: > list=[] >
Lists in classes
Hello, Learning python from a c++ background. Very confused about this: class jeremy: list=[] def additem(self): self.list.append("hi") return temp = jeremy() temp.additem() temp.additem() print temp.list temp2 = jeremy() prin