Displaying an image using PyQt5 in Python

By Tuhin Mitra

In this post, I will specifically be demonstrating to you the use of a QGraphicsView() widget in PyQt5. I’ll be using Python 3.7 and the versions of other modules are as foll.... Read More

string.atoi in Python

By Nimish Bahuguna

In this tutorial, we will learn about string.atoi in Python and how it can be used in various situations. About string.atoi in Python Atoi stands for ASCII to Integer Conversion an.... Read More

string.punctuation in Python

By Nimish Bahuguna

In this tutorial, we will learn about the string.punctuation in Python. We will also see an example code to understand the use of this operation. What is string.punctuation in Pyth.... Read More

Remove element from the map container in C++

By Ayush Tripathi

Hello guys, In this tutorial, we will learn how to remove an element from the map container in C++. Suppose we want to store the name and roll number of each student, then the map .... Read More

Find all the files of a specific extension in a folder in C++

By Ayush Tripathi

Hello guys, in this tutorial we learn how to find all the files of a specific extension in a folder in C++.  For example for example we have a folder which contain .txt file mean.... Read More

Adding Suffix to Numpy Array Elements In Python

By Nataraj Maddala

In this tutorial, we are going to learn about adding the suffix to the Numpy array elements in Python. Firstly, let’s know what is Numpy and array. Numpy: Numpy is a Python m.... Read More

How to remove digits from string in C++

By Tanmaay Kankaria

In this article, we are going to learn how to remove digits from a string in C++. Strings are an array of characters. The main difference between a character array and a string is .... Read More

__radd__ Function in Python

By Shrimad Mishra

Hi everyone, In this post, we are going to learn about the __radd __ function in Python language. But, before going through this post you must have prior knowledge of class and obj.... Read More