Find and replace a word in a given sentence or string in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss how to find all the occurrences of a word in a given sentence or string and replace it with a particular word. This feature can be see.... Read More

Introduction to Single Linked List

By Deepshi Sharma

Today we are going to talk about a frequently used data structure called Linked list. The linked list is a data structure for storing lists of elements. Now the question arises whe.... Read More

Rename multiple files in python

By Prakash Raj

In this session, we are going to learn how to change the name of multiple files of a given directory. How to rename multiple files of a given directory in python There is an OS mod.... Read More

Find out the future date with Python

By Rachna Patel

This tutorial will focus on how to add days to date in Python or you can say how to find a future date in Python. Hey Pythoneers, Do you sometimes get lost and wonder finding out t.... Read More

Removing double quotes from string in C++

By Deepshi Sharma

In this tutorial, we are going to learn how to remove double quotes from a string in C++. We can do this by using erase() function. Basically, what is the work of erase() function?.... Read More

Prepare your own data set for image classification in Machine learning Python

By Mrityunjay Tripathi

There is large amount of open source data sets available on the Internet for Machine Learning, but while managing your own project you may require your own data set. Today, letR.... Read More

Removing White spaces from a String in Java

By Akash Tripathi

Hello Folks, Today we will learn to remove unnecessary whitespaces from a string in Java. Remove extra whitespaces from a string in Java So, making clear what we intend to do let&#.... Read More

How to implement Priority Queue in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss priority queue and its implementation in C++. What is Priority Queue ? Priority Queue is a container in which every element has a prio.... Read More