top of page


Python Practice Set (Part 11): OOP Inheritance
Inheritance allows a new "child" class to take on all the attributes and methods of a "parent" class, letting you reuse code and build logical relationships between your objects. Let's explore this powerful OOP principle
Anubhav Somani
Sep 32 min read


Python Practice Set (Part 10): Introduction to Object-Oriented Programming (OOP)
Welcome to Part 10 of our Python practice series! We're now moving from writing scripts to building structured programs. Object-Oriented Programming (OOP) is a paradigm for organizing code around "objects," which can be thought of as custom data types.
Anubhav Somani
Sep 22 min read
bottom of page