top of page
Writer's pictureRajesh Singh

Python Program to Check a Number is Odd or Even ?

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:




156 views0 comments

Recent Posts

See All

Comentarios


bottom of page