How to check if a number is a perfect square in Python

By Sachin Rastogi

Let’s learn how to check if a number is a perfect square number in Python. Here we need to use Math module of python to check the number. Check if a number is a perfect squa.... Read More

Java String endsWith() Method

By Esmail Rahmani

In this topic, we will learn how to use endsWith(String suffix) method in Java program. this method is under java.lang package and it exists in String class. This method uses to ch.... Read More

UUID Module in Python

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about the UUID Module in Python which is used to generate immutable unique ids of 128 bits. These are Randomly generated u.... Read More

Convert a JavaScript array to an object

By Faruque Ahamed Mollick

While working in a project, we often may have a JavaScript array, but we need an object of the same data for some purpose. So, in this article, I will let you know how can you conv.... Read More

Face Recognition from video in python using OpenCV

Face Recognition from video in python using OpenCV

By Aparna Srivastava | November 4, 2019

In the present era, OpenCV becomes a very strong tool for machine learning with the help of computer vision this become easier. In this tutorial, we will learn Face Recognition from video in Python using OpenCV. So How can we Recognize the face from video in Python using OpenCV we will learn in this Tutorial. […] Read More

Remove Duplicate Values from a JavaScript Array

By Faruque Ahamed Mollick

In this tutorial, you will see how to remove duplicate values from a JavaScript array with simple and quick examples of JS code. First of all, I would like to let you know that, th.... Read More

How to find skewness of data using Python

By Sachin Kumar

In this tutorial, we are going to learn how to find skewness of data using Python. We can easily find skewness of any data in Python using the following library that is Scipy.stats.... Read More

How to remove blank lines from a text file in Java

By Ayush Sanghavi

Hi, today’s tutorial is about how to remove blank lines from a text file in Java. Imagine, you have a huge text file running into thousands and thousands of characters with a.... Read More

Related Posts