Answers for "python condition to check if a number is odd"

1

how to find if a value is even or odd in python

num = int(input("Enter a Number:"))
if num % 2 == 0:
  print(num , "is even")
else:
  print(num , "is odd")
Posted by: Guest on June-06-2021
0

wap in python to check a number is odd or even

num = int(input("Enter a number: "))  
if (num % 2) == 0:  
  print(num ,"is even numbern")  
#CODE BY VENOM STONE
else:  
  print(num,"is Odd numbern")
#CODE BY VENOM STONE
Posted by: Guest on April-11-2021

Code answers related to "python condition to check if a number is odd"

Python Answers by Framework

Browse Popular Code Answers by Language