Skip to content

Tag Archives: Python-OOP

Here in this article we are going to find out whether __init__() in Python is actually private or not. So we might come across many… Read More
In this article, we will compare and highlight the features of aggregation and Composition in Python OOPS.   Concept of Inheritance Inheritance is a mechanism… Read More
In this article, we will see How To Get a Class Name of a class instance. For getting the class name of an instance, we… Read More
In this article, we will see how to take input using class in Python. Using a Class with Input in Python It is to be… Read More
In this article, we’ll look at how to find the index of an item in a list using an attribute in Python. We’ll use the… Read More
In this article, we will discuss data hiding in Python, starting from data hiding in general to data hiding in Python, along with the advantages… Read More
In this article, we will see how to build a flashcard using class in python. A flashcard is a card having information on both sides,… Read More
Instances of a class mean the objects created for a particular class. A single class can have multiple objects of it. Here, we will find… Read More
A Class Factory is a function that creates and returns a class. It is one of the powerful patterns in Python. In this section, we… Read More
Prerequisites: Python Classes and Objects Given a deck of cards, the task is to distribute them between two players. Approach: To shuffle the deck of… Read More
Prerequisite – Classes and Objects in Python This article will compare and highlight the features of is-a relation and has-a relation in Python. What is… Read More
Python does not support explicit multiple constructors, yet there are some ways using which multiple constructors can be achieved. If multiple __init__ methods are written… Read More
We can easily create decorators inside a class and it is easily accessible for its child classes. During Decorator creation, we must take care that… Read More
The NamedTuple class of the typing module added in Python 3.6 is the younger sibling of the namedtuple class in the collections module. The main… Read More
It happens most of the time that given a condition we need to decide whether a particular class should inherit a class or not, for… Read More

Start Your Coding Journey Now!