Convert first letters of a string to uppercase in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to convert the first letters of a string to uppercase in JavaScript. Variables used in code str – string const str = "This is a Tutorial i.... Read More

How to generate random floating numbers in Python

By Manam Sampath Kumar Reddy

In this tutorial, we will learn how to get float numbers between two numbers using Python. To get a random floating number we will use random.uniform() function this will give a fl.... Read More

How to pass JavaScript Variables to Python in Flask?

By Shamik Lahiri

In this tutorial, we’ll take a look at how to pass JavaScript variables to a Python variable in Flask. In JavaScript, variables store data that can be used or edited later on.... Read More

How to create and upload Python package to PyPI?

By Varsha Neelamma

You must be familiar with Packages in python and how they are used. In simple words, a Python package is a collection of Python modules that provides an easy way of structuring the.... Read More

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

Related Posts