Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to check if a number is odd python

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))  
Source by www.javatpoint.com #
 
PREVIOUS NEXT
Tagged: #check #number #odd #python
ADD COMMENT
Topic
Name
8+6 =