Posts by Souhardya Ganguly
Author Biographical Info: Not available
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
In this Python tutorial, we shall see how to check whether a number is a Magic Number or not. We shall use functions in Python for the same. What is a Magic Number? If we iterate t.... Read More
In this tutorial, you will learn how to check whether the elements in a Python list entered by the user are perfect squares or not using list comprehension and the math module. Lis.... Read More