how to check odd number in python code example
Example 1: odd or even python
num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
Example 2: how to check if a number is odd python
num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even number".format(num))
else:
print("{0} is Odd number".format(num))
Example 3: 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))
Example 4: python even or odd
injd = int(input('Enter a number'))
n = injd % 2
if n > 0:
print('This is an odd number')
else:
print('This is an even number')
Example 5: 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
Example 6: how to get odd numbers in python
rnge = int(input("Enter the range: "))
for i in range(1, rnge, 2):
print(i)