Learn Object Oriented Programming in Python

Lane is a back-end engineer and the lead instructor of Boot.dev. He has taught over one million students worldwide.

About this course
Object-oriented programming is a pattern for organizing code that's critical whether or not you plan to make use of inheritance. Understand its most important tenets. Learn the fundamentals of the most widely-used programming paradigm today: object-oriented programming. You will model real-world problems within your programs, and learn how to write code that is easy to understand and maintain. By the end of this course you'll be writing production-quality Python code.
What you'll learn
Classes
Learn about classes and objects, and how they differ from a functional paradigm.
Encapsulation
Learn how to write cleaner code by encapsulating data and methods.
Abstraction
Abstraction is a powerful tool that will make your code more robust and reusable.
Inheritance
The crux of OOP is the ability to inherit data and behaviors from other classes
Polymorphism
Polymorphism is one of the best ideas we've had as developers, learn how it works.