Formatted text in Linux Terminal using in Python

By Pratik Tayade

In this tutorial, we are going to discuss how to write formatted text in the Linux terminal using Python. In general, we used plain text which doesn’t support various styling.... Read More

Change Datatype of a NumPy array in Python

By Khushi Aswani

Have you wondered What if we used the wrong datatype in NumPy array or you want to modify it later for some reason? The simplest answer to the above question is A big Yes! So today.... Read More

Flip a NumPy array in Python

By Khushi Aswani

In this tutorial, we will learn how to flip a NumPy array in Python. What is Flip in NumPy The very first part of this tutorial is the basic definition of Flip:- Flip in NumPy mean.... Read More

Best way to insert value into a map in C++

By Aastha Jain

Hello Learners!! In this tutorial, we will learn ways to insert the value into a map in C++ and discuss the best way to do that. Before starting let’s understand what are Map.... Read More

Convert string to array in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to convert string to array in JavaScript. Converting String to a character array in JavaScript Variables used in code str – string const s.... Read More

String equals( ) function in Java

By Subhojeet Ghosh

In this tutorial, we will learn about the equals function in Java and its application in String variable fields. So let’s start with the definition of equals function. String equ.... Read More

Generate random numbers without repetition in Python

By Manam Sampath Kumar Reddy

In this tutorial, we will learn how to get non-repeating random numbers in Python. There is no in-built function to perform this task. But, we can use some techniques to do this. W.... Read More

Confusion matrix using scikit-learn in Python

By Shamik Lahiri

In this tutorial, we will learn how to plot a confusion matrix using the scikit-learn library in Python. We will be using some easy-to-go examples, getting down to the basics, and .... Read More

Related Posts