How to add a column to a NumPy array in Python

By Nikhil Vaddipati

Hello folks, in this tutorial we are going to learn how to add a column to a NumPy array in Python language. Two methods are discussed below. It is obvious that we need to import N.... Read More

Sort an array and remove the duplicate elements in C++

By Tanmaay Kankaria

In this article, we are going to learn how to sort an array and remove the duplicate elements in C++. We first get the array size and the array elements from the user. As we want t.... Read More

Loan Eligibility prediction using Machine Learning Models in Python

By Kanduri Jayanth Sri Ram

In this tutorial, you will learn how to predict the loan status using machine learning models in Python. Loan Eligibility prediction using Machine Learning Steps involved: Loading .... Read More

Creating Analog Clock using PyQt5 in Python

By Tuhin Mitra

In this post, I’ll show how to create an Analog Clock using PyQt5. I am using Python 3.7 throughout all the programs and this should work fine in Python3.8 also. The analog c.... Read More

Check internet speed in Python using speedtest-cli

By Varsha Neelamma

The internet today has become the easiest medium to connect with people and happenings across the world. Every second work you want to get done involves the internet these days. Th.... Read More

Set environmental variables in Python

By C.Surya Venkat

In this tutorial, we are going to learn about setting environmental variables in Python. Before learning how to set environmental variables in Python we will first learn what are e.... Read More

Speech to text conversion in Python

By Khushi Aswani

In this tutorial, we are going to learn how to convert Speech into text in very few lines of code in Python. So first of all, you need to make sure that you have the following libr.... Read More

How to return a vector in C++

By Neeraj Dusa

In this tutorial, we will discuss how to return a vector in C++. There are 2 ways to return a vector in C++ i.e. by value and by reference. We will see which one is more efficient .... Read More