Posts by Souhardya Ganguly
Author Biographical Info: Not available
In this Python tutorial, we shall be seeing how to calculate the average of the digits of a number. What exactly does this mean? Consider the number 537. The average of its digits .... Read More
In this Python tutorial, we shall check whether a given word contains a sequence of two consecutive letters or not using ASCII values. What do we mean? If a given word has a substr.... Read More
In this Python tutorial, we will learn about Smith Numbers and how to generate them in Python. What are Smith Numbers? Smith numbers have the following features:- They are composit.... Read More
In this tutorial, you will learn about Pell SeriesĀ and how to generate them in Python. Let’s get started! What are Pell series? Pell Series is a series where subsequent numb.... Read More
In this Python tutorial, we will learn how to take a number and rearrange its digits in ascending order to form a new number. We shall be sorting the number using the sort() functi.... Read More
In this Python tutorial, you will learn how to accept a sentence and print only the first letter of each word of the sentence in capital letters separated by a full stop. We will i.... Read More
In this Python tutorial, we will learn how to convert a sentence into its Pig Latin form. To do so, we shall be using:- Functions split() function in Python Substrings in Python Co.... Read More
In this Python tutorial, you will learn how to separate each word from a sentence in Python and then calculate the number of vowels in each word. We shall be using certain string f.... Read More