Posts from Python

How to find the dimensions of an image using Python

By Venkat Kumar

In this article, we will discuss how to find the dimensions of an image using Python i.e, the height and width of an image. This is one of the simplest tasks that you might need to.... Read More

How to set figure size of a seaborn plot in Python

By Avinash Kachare

In this tutorial, we learn here how to set the figure size of a seaborn plot in Python. To set the figure size of seaborn you need to know what is seaborn. Seaborn is a Python data.... Read More

Edge detection using OpenCV in Python

By Snigdha Ranjith

In this tutorial, we will learn how to perform Edge Detection using our webcam video using OpenCV in Python. By the end of this tutorial, you will know how incredibly easy it is! I.... Read More

Merge two images in Python

By Venkat Kumar

In this article, we will discuss how to merge two images using Python. For this purpose, we will make use of the Pillow Imaging Library (PIL) of Python. Now we are going to see the.... Read More

Music Recommendation System Project using Python

By Neelesh Biswas

In this tutorial, we will learn how to create a music recommendation system project using Python. Nowadays, we all use online music streaming services like Spotify, ITunes, Jio Saa.... Read More

Python program to calculate GST

By Sachin Rastogi

In this article, we are going to calculate the GST (Goods and Services Tax) in Python. For calculating GST we need to understand that what is GST? What does GST stands for? GST:- .... Read More

Convert RGB to hex color code in Python

By Sachin Rastogi

In this article, we are going to learn about how to convert RGB to hex color code in python. This article is mainly for the conversion of RGB to hex color code but we will also see.... Read More

Model Evaluation Metrics in Regression Models with Python

By Infant Raju

In this tutorial, we are going to see some evaluation metrics used for evaluating Regression models. Whenever a Machine Learning model is being constructed it should be evaluated s.... Read More