Python Program to Check if a Number is Odd or Even

Python Program to Check if a Number is Odd or Even


num = int(input("Enter a number: "))
if (num % 2) == 0:
   print("{0} is Even".format(num))
else:
   print("{0} is Odd".format(num))