Re: [Tutor] the chicken and the egg
Christopher Spears wrote: > Thanks to all of the tutors on this mailing list! I'm > finally making some headway! I originally decided to > tackle my problem one operator at a time: > > class MyList: > def __init__(self, aList=None): > if aList is None: >
[Tutor] the chicken and the egg
Thanks to all of the tutors on this mailing list! I'm finally making some headway! I originally decided to tackle my problem one operator at a time: class MyList: def __init__(self, aList=None): if aList is None: self.mylist = [] el