Finding first empty column in an excel sheet using Python

By Mriganka

In this tutorial, we will see how to find the first empty column in an excel file in Python using xlrd. I have designed this program specifically to guide you through, finding an e.... Read More

Activation Function For Neural Network

By Arijit Roychaudhury

What is a Neural Network? As we all know Human Neurons are one of the most sensible parts of the human body, it gives humans the ability to visualize, differentiate and determine s.... Read More

Text-To-Speech conversion in Python

By Kunal Gupta

In this tutorial, we’ll be learning about Text-To-Speech(TTS) conversion using a Python library named pyttsx3. We’ll write a message which our System will speak. This l.... Read More

Break and Continue Statement in Python

By Jitendra Kumar

In this tutorial, we will learn about the Break and Continue statement in Python. These are used in the Python language during looping that is while and for loop. Basically these t.... Read More

Print An Identity Matrix In Python

By Svarnim Agarwal

In this tutorial, we will learn how to print an identity matrix in python. The size of the matrix is user inputted. We will be using the following concepts to print the identity ma.... Read More

Call by reference and Call by value in C++

By Animisha Dalal

In this tutorial, we will learn about call by reference and call by value in C++. In C++, we can call or invoke functions using two ways: call by reference or call by value. Their .... Read More

Find all missing numbers from a sorted array in Java

By Darshna Patil

Hi coders! today we are going to see how to find all the missing numbers in a sorted array in Java. We all know an array is a collection of similar data type data. if we want to st.... Read More

Finding Commonalities in Two Dictionaries In Python

By Jitendra Kumar

In this tutorial, we have two dictionaries and want to find out what they might have in common (like the same keys, same values, etc.). Basically there are some similarities betwee.... Read More

Related Posts