How to use “pow” function in C++

By Barshan Paul

In this context, we will learn how to use pow function in C++ to find the power of a given number to another given number. The function pow is a predefined function of the “M.... Read More

Global Variables in Python

By Jagannath@cr7

In this tutorial, we will focus on this topic: Global Variables in Python. How to create and use those global variables let’s see. Variables store data and are classified int.... Read More

Self-Organizing Maps (SOM)

By Sai Ram

Hey folks, in another data science post today, we will learn about Self-Organizing Maps (SOMs). Before you proceed to have a thorough grip on ANN’s and Clustering algorithms .... Read More

Command Line Arguments in C++

By Ranjeet V

Command-line arguments are the values that are passed in your C++ programs when they are executed. The purpose of using command line arguments is to control the execution of your p.... Read More

Detecting Which key is pressed and its ASCII value in C++

By Ranjeet V

This C++ tutorial is about how to detect which key is pressed on the keyboard and find its ASCII value. Well, this is a very interesting topic and it requires prior knowledge of AS.... Read More

Literals in Python with examples

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning all about Literals and different types of Literals in Python with examples. Let us start this tutorial with a brief de.... Read More

Iterators in Python

By Jagannath@cr7

Why iterators in Python! Just have a look below. Therefore, let us define iterators. They are objects that contain values. Most common data types like Lists, Tuples, Dictionaries a.... Read More

Product of Values of elements in a Dictionary in Python

By Ria Sehgal

A dictionary is a collection of elements with key-value pairs. The values in the elements are accessed with the keys of that element. So let’s start learning: how to find the pro.... Read More

Related Posts