Python Program to Check if a Number is Odd or Even 2022-09-28 num = int(input("Enter a number: ")) if (num % 2) == 0: print("{0} is Even".format(num)) else: print("{0} is Odd".format(num)) Twitter WhatsApp Telegram Facebook