Comma-separated string to tuple in Python

By Ankita Khan

In this tutorial, we will learn how to convert the comma-separated string to a tuple in Python. Before proceeding to the solution, let us understand the problem first with a simpl.... Read More

How to find substring from text file in C++

By Ayush Tripathi

Hello guys in this tutorial, we learn how to find substring from a text file in C++. To understand this topic we first need to understand file handling C++. In file handling, we re.... Read More

Understanding for loop in Python

By Sourav Dutta

In this tutorial, we will learn the functionality of for loop in Python. For loop is a very popular type of iterating statement among different programming languages such as C, C++.... Read More

Modular multiplicative inverse in Python

By Rudresh

In this tutorial, we will learn how to find modular multiplicative inverse using Python. Let’s try to understand what this term means. Modular Multiplicative Inverse: Consid.... Read More

How to check if a string is a valid identifier or not in C++?

By Brijesh Kumar

In this tutorial, we will learn how we can check if a string is a valid identifier or not in C++ programming. We are going to see it with an example code snippet. So stay here and .... Read More

Math nexttoward() function in C++

By Rishabh Thukral

In this tutorial, we will learn about how to use the nexttoward() function in C++. So continue through this article… nexttoward() function in C++ The nexttoward() function t.... Read More

Python Program to Compute Euclidean Distance

By Nimish Bahuguna

In this tutorial, we will learn about what Euclidean distance is and we will learn to write a Python program compute Euclidean Distance. What is Euclidean Distance The Euclidean di.... Read More

How to manage hyperbolic functions in Python

By Sai Prasanna

First, let us see the basic definition of the function. “A function is a block of organized code that performs some specific task.” In this tutorial, we are going to st.... Read More

Related Posts