How to check if an array is empty or not in C++

By HARI HARAN B

The standard library contains a plethora of powerful containers and the std::array<> is one among them. The array container has several functions and one of them is the empty.... Read More

Login Registration System using MySQL in Django

By Aditi Deo

For any website, it is essential to authenticate the user to verify their identity. Therefore, in this tutorial, we will learn to setup login and registration system using MySQL in.... Read More

RGB to Grayscale Image Conversion in Python

By Amandeep Singh

In this instructional exercise, we will show you various manners by which you can change over any picture into Grayscale in Python by utilizing various libraries like scikit-image .... Read More

How to Change font style in matplotlib – Custom font

By Amandeep Singh

By default, Matplotlib visualizations might be ugly. Fortunately for you, a few lines of code can change a lot. Today, we’ll examine typeface changes and discuss why theyR.... Read More

Differences between exit and kill in C++

By YANNAM SATYA AMRUTHA

In this discussion, we will be discussing the difference between kill and exit in C++. Firstly, let’s talk about what kill and exit are and what functions they perform. exit .... Read More

Replace space with underscore in Python

By Amandeep Singh

Strings are a fundamental information type in programming. In Python, we can regard strings as iterable characters and can play out various capabilities and procedures on them. Sup.... Read More

Convert PIL image to NumPy array in Python

By Prachi Pandey

You will learn how to convert the PIL image to a NumPy array in this Python tutorial. As part of Python programming, PIL stands for Python Imaging Library, an image-related Python .... Read More

Create and use a global variable in a function in Python

By Sadhu Meghana

In this tutorial, we will learn about global variables and their usage. Python uses variables to hold data. Variables created outside the function or in the global scope are called.... Read More

Related Posts