String split and join in Python

By Shakshi Parekh

Here we explain String split and join in Python. Python provides us with various inbuilt functions, two of which are split and join. String Split in Python Split is a function in w.... Read More

How to convert .py to .exe

By Kunal Gupta

In this tutorial, we’ll be learning how we can create an executable file for our Python program that can run on any same platform system. We will make use of Python library P.... Read More

How to remove odd numbers from a linked list in C++

By Barshan Paul

In this program, we will see how to remove odd numbers from a linked list in C++. This is a very interesting program where we will learn how to remove odd numbers from a linked lis.... Read More

Reverse the order of lines of a .txt file in Python

By Ria Sehgal

Learn how to reverse the order of lines of a .txt file in Python. That means, the last line of the text file will appear first and the first line will appear last. This tutorial is.... Read More

Python program to check given number is Disarium or not

By Shravan Reddy

In this tutorial, we will be learning about Disarium numbers and also see how to check if a number is a disarium number or not using a Python program. We will be using the followin.... Read More

How to check Involutory Matrix in C++

By Alok Singh

Hello, in this tutorial, we will learn how to check whether a matrix is an involuntary matrix or not in C++ with an example, Algorithm, and a program. A matrix is said to be an inv.... Read More

Check whether a matrix is Markov matrix in C++

By Alok Singh

In this tutorial, we will learn how to check whether a matrix is a Markov matrix or not in C++ with Example, Algorithm, and a program. Markov matrix is a matrix in which the sum of.... Read More

Geodemographic segmentation

By Rohit Arodi

In this tutorial, we are gonna see what is Geodemographic segmentation and where do we use is. What is Geodemographic segmentation This can be better explained with an example, sup.... Read More

Related Posts