Python Program to check if a Number is Odd or Even

Write a Python Program to check if a Number is Odd or Even using the If Statement with an example. As we all know, If the number is divisible by 2, then we call it even. And the remaining ones (not divisible by 2) are called odd numbers. In Python, we have an Arithmetic Operator called % … Read more