Answers for "write a code using a function to check whether a given number is even or odd python"

1

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))
Posted by: Guest on April-26-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 "write a code using a function to check whether a given number is even or odd python"

Python Answers by Framework

Browse Popular Code Answers by Language