programming-examples/python/Basics/Python Program to Check if a Number is Odd or Even.py
2019-11-18 14:44:36 +01:00

5 lines
136 B
Python

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