Python replace in numpy array more or less than a specific value

Python program to replace elements of numpy array that is more or less than a specific value.

Read

C program to arrange numbers in ascending order

C program to arrange user provided numbers in ascending order. We will take random amount of numbers from the user and arrange them in ascending order in this program.

Read

Introduction to strcat function in C with example

strcat function in c and how to use it. This function is used to copy one string from one variable to another. This post will show you how to use strcat with example.

Read

Introduction to local and global scope in JavaScript

Learn what is global scope and local scope in JavaScript with examples. Variables defined in global scope are accessible globally and local scope are accessible locally.

Read

Introduction to JavaScript rest parameter

JavaScript rest parameter explanation with example. Learn how to use rest parameter with different examples in this post.

Read

Introduction to JavaScript Arrow function

JavaScript arrow function explanation with examples. Leart different ways to use arrow function in JavaScript.

Read

end parameter in python print statement and how to use it

Learn what is end parameter in python and how we can use it in print statement.

Read

Python program to find the percentage difference between two numbers

Two ways to find the percentage difference between two numbers in Python. We will learn how to find the positive and negative percentage differences with examples.

Read

Python program to calculate discount based on selling price

In this post, we will learn how to find the discount and amount to pay based on predefined discount percentage

Read

How to take inputs from user in Python

In this tutorial, we will learn how to take inputs from the user in python with examples of sys.stdin and input() methods of python

Read