Posts from Python

Math Operations for Data Analysis in Python

By Megha J Panicker

Data Analysis is the process of extracting valuable information for data. In python, we have a number of tools to do that. We will first import the numpy library, this library has .... Read More

Rescale pixel intensities of an image in Python

By Megha J Panicker

In this tutorial, we will see how to rescale the pixel intensities of image. Colour images are arrays of pixel values of RED, GREEN, and BLUE. These RGB values range from 0 –.... Read More

Inner Functions in Python

By Dipam Hazra

In this article, we will learn about the inner functions in Python. So, now let’s discuss what is the inner function? How does it work in python? We will discuss these whole .... Read More

Logistic Regression from scratch in Python

By Sakshi Gawande

Classification techniques are used to handle categorical variables. Logistic Regression is a linear classifier which returns probabilities(P(Y=1) or P(Y=0)) as a function of the de.... Read More

Multiply each element of a list by a number in Python

By Rashi Singh

In this tutorial, we will learn how to multiply each element of a list by a number in Python. We can do this by two methods- By using List Comprehension By using for loop  Using L.... Read More

How to Count pairs whose products exist in array in Python

By Nishtha Grover

In this tutorial, we will learn How to Count pairs whose products exist in an array in Python using Brute Force as well as a Time-Efficient Approach. Brute Force Approach: Count pa.... Read More

Find Union and Intersection of two linked lists in Python

By Vineet Raj

In this tutorial, we learn to find the Union and Intersection of two linked lists in Python. The difference between the two sets is converted to a third set with elements common to.... Read More

Find Live Running Status of a train in Python

By Abhisikta Chakraborty

Ever been frustrated while having to open the Indian Railways website multiple times to check the status of trains? If yes, then it’s time to automate that using our favorite.... Read More

Related Posts