Merge a tuple and a list into a single list in Python

By Ishant Thulla

In this tutorial, you will learn how to merge a tuple and a list into a single list in Python. For this, first, let us make a list in Python. The list can contain anything in Pytho.... Read More

Shutdown and Restart a Computer using C++

By YANNAM SATYA AMRUTHA

In general, we can shut down and restart a computer by clicking the start menu or using shortcuts. We can also shut down and restart the computer using a simple code in C++. In thi.... Read More

Find similarity between two images in Python

By Ishant Thulla

In this tutorial, we are going to learn how to find similarities between two images using Python and OpenCV. First of all, we have to import two libraries known as OpenCV and NumPy.... Read More

Python Program to Find Gravitational Force between Two Objects

By Faruque Ahamed Mollick

This tutorial is going to show you a simple Python program to calculate the Gravitational Force between two objects. To find out the gravitational force between two objects, for ex.... Read More

Convert a Dictionary to a Pandas Dataframe in Python

By Naman Maheshwari

Here, we learn how to conversion of Python Dictionaries to Pandas. Dictionary to Pandas Dataframe Here First, you need to understand the basics of the Python dictionary and the Pan.... Read More

Convert a Dictionary to a NumPy Array in Python

By Naman Maheshwari

In this tutorial, you learn here to Conversion a Dictionary to an Array in Python by NumPy. Conversion of Dictionary to an Array First, you need to understand the basics of Python .... Read More

Check if a variable is an array in JavaScript

By Samim

This tutorial will show you how you can check if a variable is an array or not in JavaScript. For this purpose, we will use Array.isArray method and instanceof operator. Using Arra.... Read More

Split a string breaking at a particular character in JavaScript

By HETVI JAIN

In this article, we will how to split a string at a particular character in JavaScript. We shall demonstrate this using two different techniques. split() function. using for loop. .... Read More