Objectivo
Desarrollar un programa Python que utilice el operador condicional para asignar a una variable booleana llamada "bothEven" el valor "Verdadero" si dos números ingresados por el usuario son pares, o "Falso" si alguno de ellos es impar.
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user for two numbers
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))
# Use the conditional operator to check if both numbers are even
bothEven = True if num1 % 2 == 0 and num2 % 2 == 0 else False
# Display the result
print(f"Both numbers are even: {bothEven}")
Output
Enter the first number: 4
Enter the second number: 6
Both numbers are even: True
Enter the first number: 4
Enter the second number: 7
Both numbers are even: False
Enter the first number: 3
Enter the second number: 5
Both numbers are even: False
Código de Ejemplo copiado
Comparte este ejercicios Python