الصفحة الرئيسيةpython Python Program to Check if a Number is Odd or Even يونيو 20, 2021 0 num = int(input("Enter a number: ")) if (num % 2) == 0: print("{0} is Even".format(num)) else: print("{0} is Odd".format(num)) Tags: python Facebook Twitter