python

Python Exception Handling – I

What is Python Exception Handling? Exception handling is a Python concept used to handle exceptions and errors during program execution.…

2 years ago

Errors and Built-in Exceptions

A minor typing error can result in an error in any programming language as we must follow the syntax rules…

2 years ago

Operator Overloading in Python

Operator overloading refers to providing meaning that extends beyond their predefined operational meaning. For example, the operator + can be…

2 years ago

Static Keyword in Python

Class or Static Variables: In Python, a variable declared within a class but outside any method is referred to as…

2 years ago

Polymorphism in Python

What is Polymorphism? Polymorphism is derived from the Greek words poly (many) and morphism (change) (forms). That is, the same…

2 years ago

Method Overriding in Python

Method overriding is a feature of any object-oriented programming language that allows a subclass or child class to implement a…

2 years ago

Access Modifiers in Python

When implementing the concepts of inheritance in Python code, access specifiers or access modifiers are used to restrict the access…

2 years ago

Types of Inheritance in Python

Types of Inheritance depend upon the number of child and parent classes involved. There are four types of inheritance in…

2 years ago

Inheritance in Python

Inheritance is a fundamental idea in object-oriented programming (OOP) languages. By deriving a class from another class, you can use…

2 years ago

Destructors in Python

When an object is destroyed, the destructors are called. Destructors are not as necessary in Python as they are in…

2 years ago