Python Program to check Even or Odd || Conditional Statement || Python

In this post we are going to see a program to check whether a Number is Even or Odd in Python Programming Language.


num = int(input("Enter The Number : "))
if num % 2 == 0:
    print("Even")
else: 
    print("Odd")

# Coded By Dhiraj Shelke

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post