How to take space separated input in Python?

Introduction: In this article, I am going to explain how to take space-separated input in Python?  There may be a situation when we want to enter more than one value but all the values should be separated by space and we hit the enter key after the last input.  To fulfill this requirement we should … Read more

Python Program to Check Whether a Number is Prime or Not

In this article, we will check whether an integer is a prime number or not in python. What is Prime Number? If a whole number greater than 1, is divisible by the 1 and itself then it is known as Prime Number. A prime number is a number which is divisible by only two numbers: … Read more

Program to Check Armstrong Number in python

Armstrong-Number-in-python

Python Program to Check Armstrong Number Armstrong number in python-In this article, we will see a Python program through which we can check if the given number is an Armstrong number or not. What is Armstrong number in Python? An Armstrong number is an n-digit number that is equal to the sum of the nth … Read more

Find the Fibonacci Series and Factorial in python

Fibonacci-Series-in-python

Fibonacci Series in python Fibonacci Series in python-In this article, we’re going to start talking about finding the Fibonacci series in python and the factorial of a number in Python. So to begin with the Fibonacci numbers is a fairly classically studied sequence of natural numbers. The 0th element of the sequence is 0. The … Read more