Count the number of null elements in an array in C++

By Shubham Baniya

In this tutorial, we will learn how to count the null elements in the string array in C++. There is no predefined string data type in C because of which in order to create a string.... Read More

Check version of installed Python from cmd in Windows

By Shubham Baniya

Hello & welcome to this tutorial!!! This tutorial will help you to find out which version of Python is installed on your Windows OS computer using cmd (Command Prompt). Steps f.... Read More

Separate alphabets and numbers in a string using regular expressions in Python

By Soma Shrenika

In this tutorial, we will learn regular expressions to separate numbers and alphabets in Python in different ways. This is very useful in competitive programming. Using regular exp.... Read More

Dataframe.get() in Pandas with examples

By Soma Shrenika

In this tutorial, we will learn how to use the get() method in pandas. This method is used to retrieve an item for an object for a given key which is basically the column of a data.... Read More

String methods in Pandas

By Soma Shrenika

In this tutorial, we will learn some of the most commonly used string methods in Pandas. These string methods are applied to a series in Pandas. These methods are mainly used for s.... Read More

Nearest palindrome of a number in python

By Soma Shrenika

In this tutorial, we will see how to generate the nearest palindrome of a given number in Python if the given number is not a palindrome. By the end of this tutorial, you will be a.... Read More

Convert char to int in Java

By Subhojeet Ghosh

In this tutorial, we will learn how can we change char to int in Java. There are many ways by which we can convert or change char to int. Some of the approaches are as follows: (1).... Read More

Java Math random() method

By Shiksha Sinha

In this tutorial, we will learn everything about Java Math random() method. Java includes various library methods. The library methods or functions are the in-built methods provide.... Read More

Related Posts