- This event has passed.
8 PM – Python OOP – Joel
November 24 @ 8:00 pm - 9:00 pm
Today we did:
- We continued with the MonsterSystem.
Homework:
- Make water golem, troll, and griffin classes, similar to the way we did dragon today. The only difference is the species is changed to their species.
- Continue reviewing the concept of inheritance:
- Inheritance is a parent-child relationship between classes
- The parent is the general class, the child is more specific.
- The child can “inherit” or have access to the parent class’ attributes and methods.
- super().__init__() is calling the parent’s constructor.