Answers for "write a program to find whether a given number is even or odd. python"

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

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

Code answers related to "write a program to find whether a given number is even or odd. python"

Python Answers by Framework

Browse Popular Code Answers by Language