Posts by Sameer Saxena

Author Biographical Info: An enthusiastic learner and Programmer.

How to Read PDF File in Python Line by Line?

By Sameer Saxena

You may have gone through various examples of text file handling, in which you must have written text into the file or extracted it from the file as a whole (using ‘read().... Read More

Python PIL image blend() method

By Sameer Saxena

Many times we need to merge two images into a single image for giving it some special effects, therefore we need to know how to blend these two images in Python or merge them. So I.... Read More

How to change font color in matplotlib – Python

By Sameer Saxena

In this tutorial, we will be learning how to change the font color in matplotlib in Python. In this, we will be using the ‘Matplotlib’ library and more specifically the.... Read More

Create a Text Editor in Python

By Sameer Saxena

In this tutorial, we will learn how to create a text editor like notepad in Python. Text Editor is the first most and essential need of a software developer those are willing to wr.... Read More

Get the Basic image information with Pillow | Python

By Sameer Saxena

In this tutorial, we are going to learn how to get the basic information about an image using Python Imaging Library(PIL) i.e also known as ‘Pillow’. In this library, t.... Read More

Build a music player with Tkinter and Pygame in Python

By Sameer Saxena

In this tutorial, we will learn how to build or create a simple music player application in Python using Tkinter and Pygame. Listening to music is a hobby of almost every person yo.... Read More

How to Convert Image to PDF in Python

By Sameer Saxena

In this tutorial, we will learn how to convert image to PDF file in Python. As we all Know PDF (Portable Document Format) is much more reliable than the Image (JPG, PNG), As they o.... Read More

Create a GUI downloader App using Python

By Sameer Saxena

In this Python tutorial, we will build a downloader App in Python (GUI based). This is a simple project using Tkinter. File Downloader is an essential application that every operat.... Read More

Related Posts