Answers for "how to check odd number and even number in python using loop"

4

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

Python program to check whether a number is even or odd

a = int(input("Enter the number to find odd or even "))
if (a % 2) == 0:
print("{0} is Even".format(a))
else:
print("{0} is Odd".format(a))
Posted by: Guest on June-18-2021

Code answers related to "how to check odd number and even number in python using loop"

Python Answers by Framework

Browse Popular Code Answers by Language