Posts by Harathi

Author Biographical Info: Not available

Method Overloading vs. Method Overriding in Python

By Harathi

  Method Overloading: Two or more methods have the same name but different numbers of parameters different types of parameters, or both. These methods are called overloaded me.... Read More

Print top view of binary tree

By Harathi

Example: # Python3 program to print top # view of binary tree # Binary Tree Node """ utility that allocates a newNode with the given key """ class newNode: # Construct to create a .... Read More

Extending a Class Method in Python

By Harathi

Extending a class method in Python involves inheriting from a parent class and adding new functionality to an existing method. Here’s a tutorial-like description with an Key .... Read More