Posts by Ranjeet V
Author Biographical Info: Not available
This Python tutorial will teach you how to find the least frequent character in a string. In a Python program, sometimes we may need to do some operation on the least occurring cha.... Read More
In this tutorial, we are going to see how to find indices of the non-zero elements in the Python list. There may be instances when we need to access only the non-zero elements in t.... Read More
Hey guys, in this tutorial we will learn about how we can open and use a web browser using Python code. This is very simple. Python provides us with a webbrowser module for this pu.... Read More
exit() and _Exit() functions are used to terminate a C++ program. But there must be some difference between these two otherwise what is the use of defining two functions that perfo.... Read More
In this tutorial, we are going to learn how to append data to a file in Python. To do this we are going to use open() method to open the file in append mode and write() method to w.... Read More
In this Java tutorial, we will talk about the ways to terminate a Java Program with example. Normally, we use the return statement in the main() method to exit the program. In this.... Read More
In this tutorial, we are going to learn about the nearbyint() function in C++. This C++ function is defined in <cmath> header file. As the name suggests, the nearbyint() func.... Read More
Welcome everyone, in this post, we will see how to check if any element in a list satisfies a condition in Python. There can be many instances when we need to find out if whether s.... Read More