Hello,
I am new to Python programming so please excuse what may be a simple question:
I have created a class which contains a list of other classes, e.g.
class Monkey:
hairsList = []
totalHairs = int(0)
def __init__(self, totalHairs):
self.hairsList = self.getHairs()...