Answers for "write code to find even or odd in python"

1

how to make a python program on odd and even

Number = int(input("Write any number:- "))
Opration = Number%2
if Opration == 0:
    print("it's odd number")
else:
    print("It's even number")
Posted by: Guest on July-31-2021
1

odd or even in python

n = int(input("Enter a number: "))
print(n,"is Even.") if (n % 2) == 0 else print(n,"is Odd.")
Posted by: Guest on April-16-2021
0

fastest way to check odd or even in python

>>> def isodd(num):
        return num & 1 and True or False

>>> isodd(10)
False
>>> isodd(9)
True
Posted by: Guest on September-14-2020

Code answers related to "write code to find even or odd in python"

Python Answers by Framework

Browse Popular Code Answers by Language