Posts from Python

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

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

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

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 change key in dictionary in Python

By Jagannath@cr7

This article will let you know how to change the key of a dictionary in python even though the key is immutable. Dictionary is a kind of array of key-value pairs. If you have to ac.... Read More

sys Module in Python with Examples

By Kunal Gupta

In this tutorial, we’ll be learning about the sys Module in Python and the main functions provided by this module that are commonly used by many programmers. This Module prov.... Read More

Basics of OpenCV (Resizing, Cropping, Rotation, and some other image Attributes)

By Shaileshkumar Mishra

Here we’ll be doing many operations on an image using OpenCV functions. To make this session interactive image of Thanos(A character from a famous movie ) is being taken for .... Read More

Annotation of plot using matplotlib in Python

By Sachin Rastogi

In this tutorial, we will learn the annotation of a plot using matplotlib in Python. We will see how to add labels and titles using matplotlib. Annotation:–  The word anno.... Read More

Related Posts