Frequency of each character in a string using map in c++

By Saurabh Singh

In some competitive programming problems, it is required to check if a character in a string is repeating or not, number of repeating character or frequency of a particular charact.... Read More

Coroutines in Python – Start and close coroutines example

By Pavitra Walia

In this Python tutorial, we will learn the basics of coroutines in Python with the code snippets. All of us are familiar with functions in Python 3.x or earlier which is also know.... Read More

How to convert first letter of each word to uppercase in Python

By Saruque Ahamed Mollick

In this Python tutorial, we will learn how to convert first letter of each word to uppercase in a string in Python. To make it simple just look at this below example, Hi, this is c.... Read More

How to print string and int in the same line in Python

By Saruque Ahamed Mollick

This Python tutorial is on how to print string and int in the same line in Python. This is a very common scenario when you need to print string and int value in the same line in Py.... Read More

How to create multiplication table in Python

By Saruque Ahamed Mollick

This is a Python tutorial, where you will learn how to make multiplication table in Python. It’s very easy to create a multiplication table in Python if you understand the wo.... Read More

Classes and objects in C++

By Saurabh Singh

In this C++ tutorial, we will learn the basics of classes and objects. Also, we have provided an easy example. Consider an example of a company, where there are manager, assistant .... Read More

How to implement a Queue data structure in Python

By Abhilash Bandla

In this Python tutorial, we will learn how to implement a queue data structure in Python language. First, what is queue? A queue is a data structure which follows First In First Ou.... Read More

Difference between os.rename and shutil.move in Python

By Saruque Ahamed Mollick

In Python, there are many useful modules. os and shutil modules are two of those useful modules. Today we are going to learn the difference between os.rename and shutil.move in Py.... Read More

Related Posts