VILL- DEBANDI, AMTA, HOWRAH PIN-711410 Phone-9836357266
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))
No comments:
Post a Comment