Write a Python Program to check if a Number is Odd or Even using If Statement with an example. As we all know, If the number is divisible by 2, then we called it as even. And the remaining ones (not divisible by 2) called as odd numbers.
In Python, we have an Arithmetic Operator called % (Modulus) to see the remainder. Let’s use this operator, if the remainder is 0, then the number is even, an else odd.
Python Program to check if a Number is Odd or Even
This Python program to find odd or even allows the user to enter an integer and checks whether that number is even or odd using the If statement.
number = int(input(" Please Enter any Integer Value : ")) if(number % 2 == 0): print("{0} is an Even Number".format(number)) else: print("{0} is an Odd Number".format(number))
Within this Python odd or even program, the below statement asks the user to Enter any integer value.
number = int(input(" Please Enter any Integer Value : "))
In the Next line, We declared the If statement
The number that is entirely divisible 2 is even number. The Arithmetic Operator inside the Python If condition check the same
- If the condition is True, then it is an Even
- If the condition is False, then it is an Odd
Output
Please Enter any Integer Value : 9
9 is an Odd Number
Let me enter the second value to check for the even.
Please Enter any Integer Value : 28
28 is an Even Number
Python Program to Verify if a Number is Odd or Even Example 2
In this Python odd or even program example, we are using the if statement in a single line.
number = int(input(" Please Enter any Integer Value : ")) print("{0} is an Even Number".format(number)) if(number % 2 == 0) else print("{0} is an Odd Number".format(number))

Let me try the other value
Please Enter any Integer Value : 19
19 is an Odd Number