Ejemplo 1: pitón par o impar
# Python program to check if the input number is odd or even.
# A number is even if division by 2 gives a remainder of 0.
# If the remainder is 1, it is an odd number.
num = int(input("Enter a number: "))
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
Ejemplo 2: como comprobar si un número es impar en 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))
Ejemplo 3: forma más rápida de verificar pares o impares en Python
>>> def isodd(num):
return num & 1 and True or False
>>> isodd(10)
False
>>> isodd(9)
True
Ejemplo 4: cómo obtener números impares en Python
# Here, rnge means range
rnge = int(input("Enter the range: "))
for i in range(1, rnge, 2):
print(i)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)