Posts by Ranjeet V
Author Biographical Info: Not available
Hello everybody, in this tutorial, we are going to learn about the predefined macros in C++. Macros in C++ are the statements or expressions defined using #define. The given link w.... Read More
In this tutorial, we are going to write a program to find the superfactorial of a number inĀ Python. A superfactorial of a given number n would be the product of first n factorial.... Read More
It is very easy to construct and use graphs in Python using the NetworkX software package. This Python language software package makes it easy to create, manipulate and understand .... Read More
Hey everyone, this is an interesting tutorial about quine in Python. First, let’s try to understand what is quine. What is Quine? Quine is a program that does not take any in.... Read More
We all know about the Fibonacci sequence. It is a sequence where any term is the sum of the previous two terms. The Lucas sequence is the same but with different starting values. W.... Read More
Hi guys! In this tutorial, we will learn how to catch an HTTP 404 error in Python. There are many instances when we encounter an HTTP error with error code 404 on the internet. Thi.... Read More
This tutorial is about pure and impure functions in C++. In C++, functions that follow below conditions are said to be pure. They return the same value for the same argument passed.... Read More
In this tutorial, we will learn to use the round() function in Python. We use this function to round off any floating number to a given number of digits after the decimal point. If.... Read More