Answers for "is there any command to detect odd even number in python"

8

program to find even numbers in python

m = int(input("Enter number"))
if m % 2 == 0:
    print(m,"is an even number")
else:
    print(m,"is an odd number")
Posted by: Guest on July-24-2020
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 "is there any command to detect odd even number in python"

Python Answers by Framework

Browse Popular Code Answers by Language