Now you know all about Python’s mechanisms for writing object-oriented code where the
data and operations on that data are structured together. You’re an old pro at using
the class
keyword to create these structures. You can also base the definition of
a class on other classes to create hierarchical structures and reuse your code.
This mechanism is known as inheritance.
In this course, you’ve learned about:
- Basic class inheritance
- Multi-level inheritance, or classes that inherit from classes
- Classes that inherit directly from more than one class, or multiple inheritance
- Special methods that you can use when writing classes
- Abstract base classes for classes that you don’t want to fully implement yet
To continue learning, you can watch the following video courses:
mikehillsnc on Sept. 13, 2023
Thanks. I have a better dunderstanding.