Posts by Karthik Desingu

Author Biographical Info: Not available

Implementing Multiple-Inheritance using Python

By Karthik Desingu

This tutorial will show you how to implement Multiple-Inheritance in Python, the syntax, program along with an explanation. Prerequisites: Basic idea of Multiple-Inheritance and im.... Read More

The super() Method and Dreaded Diamond in Python

By Karthik Desingu

This post deals with a special case of inheritance that is commonly discussed in several programming languages, i.e. the Dreaded Diamond. It further clarifies the advantage in usag.... Read More

super() Method and Function Overriding in Python

By Karthik Desingu

This post explains the usage of super() method in function overriding, a concept that is often useful in inheritance. It also provides an example to explain how these overridden fu.... Read More

Introduction to Multiple Inheritance

By Karthik Desingu

This tutorial provides a basic introduction to the concept of multiple-inheritance. The tutorial begins with a brief explanation of Inheritance and deals with multiple inheritance .... Read More

Related Posts