Objective
Develop a Python program that uses the conditional operator to assign a boolean variable named "bothEven" the value "True" if two numbers entered by the user are even, or "False" if any of them is odd.
Example Python Exercise
Show Python Code
# 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
Share this Python Exercise