Posts by Ranjeet V

Author Biographical Info: Not available

Find the least frequent character in a string in Python

By Ranjeet V

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

Find indices of the non-zero elements in the Python list

By Ranjeet V

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

Using a web browser in Python

By Ranjeet V

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

Difference between exit() and _Exit() in C++

By Ranjeet V

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

How to append data to a file in Python

By Ranjeet V

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

How to terminate a Java Program

By Ranjeet V

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

nearbyint() function in C++ with examples

By Ranjeet V

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

Check if any element in a list satisfies a condition in Python

By Ranjeet V

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

Related Posts