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
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
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
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
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
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
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
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