Object-Oriented Programming (OOP) With Python
Learning Path β Skills: OOP Fundamentals, Classes & Objects, Methods
Object-oriented Programming, or OOP for short, is a programming paradigm which provides a means of structuring programs so that properties and behaviors are bundled into individual objects.
With this learning path youβll get a solid grasp of the fundamentals of OOP in Python and how you can use this programming paradigm to make your programs easier to write and maintain.
Object-Oriented Programming (OOP) With Python
Learning Path β 8 Resources
Course
Intro to Object-Oriented Programming (OOP) in Python
In this video course, you'll learn the fundamentals of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors.
Course
Pythonic OOP String Conversion: __repr__ vs __str__
In this video series you'll do a deep dive on how Python's to-string conversion using the __repr__ and __str__ "magic methods" works and how you can add implement them in your own classes and objects.
Tutorial
Using Python's "super()" Function
In this step-by-step tutorial, you will learn how to leverage single and multiple inheritance in your object-oriented application to supercharge your classes with Python super().
Tutorial
Inheritance and Composition: A Python OOP Guide
Learn about inheritance and composition in Python. You'll improve your object-oriented programming (OOP) skills by understanding how to use inheritance and composition and how to leverage them in their design.
Course
OOP Method Types in Python: @classmethod vs @staticmethod vs Instance Methods
Whatβs the difference between @classmethod, @staticmethod, and βplain/regularβ instance methods in Python? Youβll know the answer after watching this video course.
Tutorial
Operator and Function Overloading in Custom Python Classes
How to overload built-in functions and operators in your custom Python classes in order to make your code more Pythonic.
Tutorial
The Ultimate Guide to Data Classes in Python 3.7
Data classes are one of the new features of Python 3.7. With data classes you do not have to write boilerplate code to get proper initialization, representation and comparisons for your objects.
Tutorial
Python Metaclasses
How Python's metaclasses work as an OOP concept, what they are good forβand why you might want to avoid them in your own programs.





