Python Program to Check Number is Odd or Even

Here you will get python program to check number is odd or even.

A number is even if it is completely divisible by 2 otherwise it is odd.

The modulus operator % is used to find remainder of any number. So here we will use it to divide a number by 2 and find the remainder. If remainder is 0 then number is even otherwise odd.

Python Program to Check Number is Odd or Even

Output

enter a number: 11
number is odd

Comment below if you have any queries related to above python odd even program.

1 thought on “Python Program to Check Number is Odd or Even”

Leave a Comment

Your email address will not be published. Required fields are marked *