393,972 views
41 votes
41 votes
Write a program to check whether the number is odd or even using 'if' statement in python

User Umidbek
by
2.6k points

1 Answer

17 votes
17 votes

Answer:

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 number". format(num))

else:

print("{0} is Odd number". format(num))

User Stack Tracer
by
2.9k points