How to delete Similar Images from a directory or folder in Python

By Sarbajit De

We all have faced this issue sometime or the other which I am going to discuss below. We have thousands of image some of which are duplicate i.e. having the same size, same image b.... Read More

Modulus operator in PHP

By Rosy Biswal

Here we are going to learn the basic concepts about the modulus operator in PHP. It is an integer operator and it finds out the remainder after an integer division of the two integ.... Read More

Sort list of list with custom compare function in Python

By Siddharth Shankar Debata

In this tutorial, we will get to know how to sort a list with a custom compare function in Python. In Python, there are in-built functions to sort a list. But, sometimes we need to.... Read More

Log to the base 2 in Python

By Anisha Gupta

In this tutorial, we will learn how to calculate log to the base 2 in Python. There are various inbuilt logarithmic functions under module “math” in Python. Math module.... Read More

All types of loops in Python with examples

By Raghav Jha

In this tutorial, we will learn about all types of loops in Python. In Python, there are three types of loops to handle the looping requirement. if and else statement 1. If stateme.... Read More

Toggle character’s case in a string using Python

By Siddharth Shankar Debata

In this tutorial, we will learn to toggle the character’s case in a string in Python. Here, we will toggle the character’s case which means if the character is in lower.... Read More

Creating a Word Counter in Python

By Saumitra Deshpande

In this post, we are going to see how we can make a word counter using Python. For this, we will be using the split function to make our job easier by reducing the length of code a.... Read More

How to use Bitwise OR function in Pandas Dataframe in Python

By Shatakshi Bhatnagar

In this tutorial, we will learn how to use bitwise OR function and pop function in Pandas Dataframe in Python. Bitwise OR function can be used where part of data can be selected wh.... Read More

Related Posts