Posts from Python

Create a PDF using fpdf in Python

By Shalini Gupta

Hello friends, in this tutorial I will tell you how you can create a PDF file using fpdf package in Python. The tutorial will contain the following : Installation of the fpdf packa.... Read More

Convert Base64 to PDF in Python

By Shalini Gupta

Hello friends, you know how to convert a string to base64 using pybase64 module. In this tutorial, I will tell you how you can convert a base64 string to PDF in Python. Convert Bas.... Read More

ERROR: Could not install packages due to an OSError: [WinError 2]

By Saruque Ahamed Mollick

I have found a solution to fix “ERROR: Could not install packages due to an OSError: [WinError 2] The system cannot find the file specified: …” this error. If you.... Read More

Generate random UUID in Python

By Shalini Gupta

Hello friends, in this tutorial I will tell you how to generate random UUID in Python. Generate random UUID in Python Before going ahead, make sure to import the uuid library into .... Read More

Count number of sentences in a string in Python

By Shalini Gupta

Hello friends, sometimes you may have a long text to read and count the number of sentences in that text. Instead of counting the full stops all by yourself, you can write a simple.... Read More

Capitalize first character of each sentence of a text file using Python

By Shalini Gupta

Hello friends, in this tutorial, I will tell you how you can capitalise the first character of every sentence of a text file using Python. Before diving into the way I would recomm.... Read More

Plot two or more histograms side by side in Python

By Shalini Gupta

Hello friends, you know how to plot a histogram in Python. In this tutorial, I will tell you how to plot two or more histograms side by side using matplotlib in Python. Plot two or.... Read More

Waffle Chart using pyWaffle in Python

By Asma Khan

In this tutorial, we will learn to create Waffle Chart using the PyWaffle library in Python. Much like waffles are a delightful treat with a distinctive grid pattern, a Waffle char.... Read More

Related Posts