top of page

Python Program to Check a Number is Odd or Even ?

Writer's picture: Rajesh SinghRajesh Singh

Updated: May 23, 2021



Python Program to Check 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))


Output:

Enter a number: 5

5 is Odd

Video:




Recent Posts

See All

Comments


bottom of page