Prime numbers are those numbers that have only two factors i.e. 1 and the number itself. In this article, we will discuss two ways to check for a … [Read more...] about Check For Prime Number in Python
Recursion In Python
You might have studied functions in python. You might also have used for loops and while loops to perform a task repetitively while programming in … [Read more...] about Recursion In Python
Check For Ugly Number In Python
You might have heard about natural numbers, prime numbers, even numbers, and odd numbers. But, have you ever wondered what an ugly number is? In this … [Read more...] about Check For Ugly Number In Python
Find Factorial Of A Number In Python
In mathematics, we can perform different operations on any given number. One such operation is finding the factorial of a number. In this article, we … [Read more...] about Find Factorial Of A Number In Python
Factors Of A Number In Python
You might have heard about multiples and factors of a number in Python. If you are reading this blog, I can definitely tell you that you are looking … [Read more...] about Factors Of A Number In Python
String Slicing in Python
Strings are one of the most used data structures in Python. We process all the text data using strings in Python. In this article, we will look at … [Read more...] about String Slicing in Python
Check For Harshad Number In Python
Numbers have many specialties. Based on the specialties, they are given unique names. One such special number is the Harshad number or Niven number. … [Read more...] about Check For Harshad Number In Python
Check for Nude Number in Python
You might have read about prime numbers, composite numbers, even numbers, odd numbers, and many more. But, Have you ever wondered what a Nude number … [Read more...] about Check for Nude Number in Python
Find Prime Factors Of A Number in Python
You might have heard about factors of a number. Factors of any given number are those numbers that divide the given number completely leaving no … [Read more...] about Find Prime Factors Of A Number in Python
How to Take User Input in Python
While programming , we often need to take user input in our programs. In this article, we will look at different ways to take user input in python. We … [Read more...] about How to Take User Input in Python