Name: Anonymous 2010-01-05 23:50
OK, say I need to create an application that simulates a
family tree. Each member may have a mom dad and kids.
I need to create a family tree class that contains a
collection of these member class objects and methods for
adding branches, removing members, etc...
I'm mainly having a hard time figuring how to join the
members if that makes sense.
I've got something like...
class member(object):
def __init__(self):
member.kid = self[0]
member.dad = self[1]
etc...
class familyTree(object):
def __init___(self):
for m in mlist:
try:
m = member(m)
blah blah blah
How to I make the familytree class contain a
collection of member class objects?
family tree. Each member may have a mom dad and kids.
I need to create a family tree class that contains a
collection of these member class objects and methods for
adding branches, removing members, etc...
I'm mainly having a hard time figuring how to join the
members if that makes sense.
I've got something like...
class member(object):
def __init__(self):
member.kid = self[0]
member.dad = self[1]
etc...
class familyTree(object):
def __init___(self):
for m in mlist:
try:
m = member(m)
blah blah blah
How to I make the familytree class contain a
collection of member class objects?