Posts from Python

Add items to Python sets

By Prasad Tale

Sets are the collection of items that are unordered in nature. Python supports the set function and we can define a set by using a curly bracket. Here we are going to see how to ad.... Read More

Difference between Eval() and Exec() functions in Python

By Nagi Reddy

This tutorial will give us a piece of extraordinary information about the use of EVAL ()  and  EXEC() functions in Python. These are very useful functions for evaluating the simp.... Read More

Plotting a Histogram in Python using Seaborn

By Alokesh Bora

In this tutorial, I will be teaching you how to plot a histogram in Python using the seaborn library. Before we begin, make sure you have the seaborn library and matplotlib library.... Read More

Plotting Categorical Data with Seaborn in Python

By Alokesh Bora

This tutorial will teach you how to plot categorical data in Python using the Seaborn library. Before we begin, you must know what the seaborn library is all about. You must also h.... Read More

Remove Duplicate Elements From a Tuple in Python

By Susil Malik

In this tutorial, we will learn how to remove duplicate elements from a tuple in Python. Sometimes in Python tuple, the data or objects are double and triple repeated, that repeate.... Read More

How to create a PDF viewer using Python

By Sameer Saxena

In this tutorial we will learn how to create PDF viewer using python, this is a GUI toolkit which uses python Tkinter module, Pdf2img module, and Python Imaging Library (PIL). As t.... Read More

Reading image from URL in Python

By Sameer Saxena

Learn how to read an image from URL in Python with this tutorial. Many times a situation may arrive where you need to download images instantly from the internet, and not only one .... Read More

Blurring an Image in Python using ImageFilter Module of Pillow

By Sameer Saxena

In this tutorial, we will learn how to blur an image in Python using Pillow. (Also known as PIL) Blurring an image is nothing but reducing the level of noise in the image and prepa.... Read More

Related Posts