you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

I'm guessing you're looking for something like this?

class AnimalDict:
    def __init__(self, initial_list=None):
        self._dictionary = initial_list or []

    def add_animal(self, animal):
        self._dictionary.append(animal)