Python program to check if a number is odd or even

Configurare noua (How To)

Situatie

A number is even if it is perfectly divisible by 2. When the number is divided by 2, we use the remainder operator % to compute the remainder. If the remainder is not zero, the number is odd.

Solutie

Pasi de urmat

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

Output 1

Enter a number: 21
21 is Odd

Output 2

Enter a number: 12
12 is Even

Tip solutie

Permanent

Voteaza

(3 din 6 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?