Ads block

Banner 728x90px

Polymorphism in Python


Polymorphism   Polymorphism contains two words " poly " and " morph ", poly means many and morphs means forms , shape . By polymorphism, …
Read more »

Types of Inheritance


Types of Inheritance
Type of Inheritance Depending upon the number of child and parent classes involved, there are four types of inheritance in python. Single Inheritance. Multip…
Read more »

Inheritence in Python


Inheritence      Inheritence is the most important aspect of object oriented programming which simmulates the real world concept of inheritence. It specifies …
Read more »

Encapsulation in Python


Encapsulation        Encapsulation is the process of making groups of objects . Encapsulation means binding variables and methods under single entity. In enc…
Read more »

Class in Python


Class       The class can be defined as a collection of objects. It is logical entity that has some specific attributes and methods . for example if you hav…
Read more »

The Self Parameter


Self Parameter           The self parameter is a reference to the current instance of the class and is used to access variables that belongs to the class. Cl…
Read more »

Python OOPS Concept


Python OOPS         Like other general-purpose programming languages, Python is also an object-oriented language.   It allows us to develop applications usin…
Read more »