Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to check if a number is even or odd in python

num = int(input("Enter a number: "))
if (num % 2) == 0:
   print("{0} is Even".format(num))
else:
   print("{0} is Odd".format(num))
     
 
PREVIOUS NEXT
Tagged: #check #number #odd #python
ADD COMMENT
Topic
Name
8+2 =