Posts from Python

Index Resetting in Pandas Dataframe in Python

By Srishti Chakraborti

In this tutorial, we will solve the task of resetting the index in a Pandas Dataframe in Python language. For this, we will use reset_index(). Furthermore, we come across a term:.... Read More

Write a Python program to list all the files in the given directory

By Sai Mukesh Reddy Gutha

Hey! In this article, you will learn how to get the list of all files and folders in a given directory using a simple Python code. We will learn about the Operating system module t.... Read More

Username Suggestions based on Constraints | Python

By Karan Trehan

In this article, we will see how to generate Username Suggestions based on certain constraints in Python language. Usernames are very common on the web nowadays. They are the short.... Read More

Write a Python program to print all twin primes less than N

By Sai Mukesh Reddy Gutha

Hi!, In this article, we are going to write a Python program to find and print all the Twin Primes less than the user input N. What are Twin Primes? We know that Prime Numbers are .... Read More

Decoding Barcodes in Python (using pyzbar)

By Karan Trehan

In this blog, we will demystify the mystery of Decoding Barcodes from images in Python. We will be making use of pyzbar module in achieving the same. Decoding Barcodes is easy in P.... Read More

Check if a given word contains consecutive letters in Python using Functions

By Souhardya Ganguly

In this Python tutorial, we shall check whether a given word contains a sequence of two consecutive letters or not using ASCII values. What do we mean? If a given word has a substr.... Read More

Extracting n Largest Dictionary Keys in Python

By Srishti Chakraborti

In this task, we are going to solve a task of extracting n number of dictionary keys in descending order in Python. Further for this, we will use the solved(), lambda, and reve.... Read More

Array Rotation using Reversal Algorithm in Python

By Srishti Chakraborti

In this tutorial, we are going to solve the task of rotating an array to the left in Python using the Reversal Algorithm. Firstly, we need to know what is an array in Python. An.... Read More