Convert Snake case to Pascal case in Python

By Ambuj Verma

In this tutorial, we will get to know about the Snake case, Pascal case and also learn about how to convert Snake case to Pascal case in Python programming language. Snake Case: sn.... Read More

Convert Snake case to Pascal case in C++

By Om Avhad

Hello friends, today we will be converting the snake case to the pascal case in C++. The snake case is one of the programming practice of writing compound words or phrases. We sepa.... Read More

How to get a list of numbers as input in Python

By Ranjeet V

Hey everyone, in this post we will learn how to get a list of numbers as input in Python. Suppose the user wants to give some numbers as input and wishes it to be stored in a list,.... Read More

Webcam for Emotion Prediction using Machine Learning in Python

By Sumit Singh

Hello Learners, in this tutorial, we will be learning about making an emotion predictor using a webcam on your system with machine learning in Python. For this, we need to have a d.... Read More

How to implement two stacks in an array in C++

By Titichh Mishra

Hi there. Today we will see how to implement two stacks in an array using C++. There are two ways to solve this question. The first method divides the space into two halves, and as.... Read More

Count number of leading spaces in a string in Python

By Saksham Agarwal

In this blog, we are going to see how we can find the number of leading spaces in a string in Python. What are leading spaces? Leading spaces refer to the number of spaces that are.... Read More

How to pad octets of IP Address with Zeros in C++

By Sonal Bera

In this article, we are going to see how we can output an IP address with 3 digits for each part in C++. We can also say that we will pad octets of IP Address with Zeros in C++. So.... Read More

Brick Sort Implementation in C++

By Sonal Bera

Hello everyone, in this post we are going to see the implementation of Brick Sort in C++. Brick Sort is also sometimes called as Odd/Even sort. This sort is not something new, but .... Read More

Related Posts