How to check if a class is a subclass or not in Python

By Shubhodh Amaravadi

In this tutorial, we are going to learn how to check if a class is a subclass or not in Python. Inheritance is an Object-oriented programming feature that helps a class to inherit .... Read More

Remove specific substring from string in C++

By Gagan Gupta

In this tutorial, we will learn how to remove some specific substring from a given string using inbuilt functions of the string library in the C++ programming language. #include &l.... Read More

How to get the children of a tag in BeautifulSoup Python

By Chaithanya Pranav Sai

In this tutorial, we are going to learn how to get the children of a tag in BeautifulSoup. We can find the children of any tag in two ways. By Knowing the class name and finding th.... Read More

Create a 2d array dynamically using pointers in C++

By Raghav Khandelwal

In this tutorial, we will learn how to create a 2D array dynamically using pointers in C++. First, let us understand what is dynamic memory allocation. Memory in the C++ program is.... Read More

How to fill cells with colors using openpyxl in Python

By Varsha Neelamma

Over the years, Microsft Excel has become an essential part of all types of work. Did you know that Python has a library that is designed specifically to allow you to work with exc.... Read More

Lasso, Ridge and Elastic Net Regularization in Python

By Premkumar Vemula

In this tutorial, we will explore the different types of regularization, their advantages and disadvantages and how to apply them and implement the same in Python. When the number .... Read More

How to remove the last character from a string in C++

By Gagan Gupta

In this tutorial, we will learn how to remove the last character from a string in the C++ programing language Remove the last character from a string in C++ #include <string>.... Read More

Priority Queue in C++ Standard Template Library (STL)

By Joyeeta Choubey

In this tutorial, we are going to learn what are Priority Queues in Standard Template Library (STL). So let’s know a little about Priority Queues. What are Priority Queues? T.... Read More