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

What are the different Oracle versions?

oracleversions

Introduction: Oracle is a  Relational Database Management System (RDBMS) available in various versions. In this article I am going to tell you various Oracle versions and features. Oracle RDBMS is providing all the features to perform online transaction processing and data where housing. Every new oracle version comes with new features. Any software is not … 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