Python Program to Check a Number is Odd or Even ?
- Rajesh Singh
- Mar 26, 2020
- 1 min read
Updated: May 23, 2021
Python Program to Check 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))
Output:
Enter a number: 5
5 is Odd
Video:
Comments