How to find the longest line from a text file in Python

By Rashi Singh

In this tutorial, we will learn how to find the longest line from a text file in Python with some easy examples. We would be using two ways- Using for loop. Using max() function. U.... Read More

NumPy Correlation in Python

By Sachin Verma

Hi, guys today we will be going to learn about the correlation in Python using the NumPy library. So basically, what is a correlation? In simple language, a correlation is a relati.... Read More

Positional only arguments in Python

By Nagi Reddy

This tutorial will give us a piece of extreme information about positional only arguments in Python. Positional-only arguments in Python: Definition: The arguments are specifying b.... Read More

Build a Pokedex in Python

By Yash Gupta

In this tutorial, we will learn how to build a simple Pokedex using Python. Pokemon has a tremendous fan following and is still really popular all around the world. In that show, w.... Read More

Change Background Color on Mouse Hover in JavaScript

By Faruque Ahamed Mollick

In this JavaScript HTML DOM tutorial, I am going to show you how we can change the background color of an element. Before we get started, let’s create an HTML element with an.... Read More

Get the ratio of two numbers in JavaScript

By Faruque Ahamed Mollick

I am again here with another JavaScript solution. In this article, you are going to see how to get the ratio between two numbers in JavaScript. Well, when we all were in high schoo.... Read More

Get the ratio of two numbers in PHP

By Faruque Ahamed Mollick

In this article, I am going to guide you to show how to get the ratio of two numbers in PHP. Follow me to see how we can perform this useful task. I hope, you already know what is .... Read More

Access items of Python sets

By Prasad Tale

In Sets, we are not able to access the items using the set indexes, as Set is a collection that is unordered and also has the unordered index i.e there are no fix indexes for the i.... Read More

Related Posts