0 votes
168 views
in Python by (98.9k points)
edited
Python Program to Check if a Number is Odd or Even

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer

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

 

Related questions

0 votes
1 answer 177 views
0 votes
1 answer 112 views
asked Jul 20, 2022 in C programming by Doubtly (98.9k points)
0 votes
1 answer 125 views
asked Aug 21, 2022 in Discuss by codelikepro (3.5k points)
0 votes
1 answer 135 views
0 votes
1 answer 151 views
0 votes
1 answer 105 views
asked Jun 11, 2022 in Python by Doubtly (98.9k points)

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

538 users

...