Objective
Develop a Python program to prompt the user for their age (e.g., 20) and respond with a message like "You look younger than 20" (the age entered by the user should be displayed in place of "20").
Example Python Exercise
Show Python Code
# Prompt the user to enter their age
age = int(input("Please enter your age: "))
# Display a message with the user's age
print(f"You look younger than {age}")
Output
Please enter your age: 20
You look younger than 20
Share this Python Exercise