Lesson 2️⃣: OOP Child Classes & Inheritance
Bitesize Key points from this lesson
-
This lesson was focused on Object Oriented Programming (OOP) in Python, specifically on how to create a child class that inherits from a parent class.
-
We learned about how child classes extend the functionality of the parent class by adding new attributes and methods.
-
We also touched on the use of the
__doc__
method to help document classes and functions.
Activities
The best way to improve your programming skills is to practice.