Tag: OOPs
-
PythonMethod Overriding in Python
Method overriding is a feature of any object-oriented programming language that allows a subclass or child class to implement a…
December 15, 2022
-
PythonPolymorphism in Python
What is Polymorphism? Polymorphism is derived from the Greek words poly (many) and morphism (change) (forms). That is, the same…
December 16, 2022
-
PythonStatic Keyword in Python
Class or Static Variables: In Python, a variable declared within a class but outside any method is referred to as…
December 17, 2022
-
PythonOperator Overloading in Python
Operator overloading refers to providing meaning that extends beyond their predefined operational meaning. For example, the operator + can be…
December 18, 2022