Posts by Sourav Dutta
Author Biographical Info: Not available
In this tutorial, I will discuss how you can delete all the png images from a specific folder using Python. For this we need to import os module, it’s a built-in module of Py.... Read More
In this tutorial, I’ll discuss how you can find all the common characters between two strings in Python. This can be done in many ways but we’ll do this with the easies.... Read More
In this tutorial, we will learn how to find the number of weeks between two dates in Python. In Python, we have an inbuilt module called datetime. By using this datetime module, we.... Read More
In this tutorial, I’ll discuss how you can get the last word from a given string in Python. It’s very easy to get the last word from a given string in Python. To get th.... Read More
In this tutorial, we will learn Python JSON Encoder and Decoder. JSON stands for JavaScript Object Notation, it is basically used for storing information easily in an organized man.... Read More
In programming, we use a loop for executing the block of statements repeatedly until the loop control statement becomes false. A do-while loop is basically somewhat similar to a wh.... Read More
In this tutorial, I’ll share some techniques to iterate over files in a given directory and perform some actions in Python. There are several ways to iterate over files in Py.... Read More
This tutorial will help you to understand how to do decrement in while loop in Python. In programming, we use a loop to execute repeatedly a block of statements until a specific co.... Read More