The most common answer is:
Age =int(input(“What is your age? “))
if(Age>=18):
print(“You are old enough to vote! “)
else:
print(“You are not old enough to vote.”)
To make sure this program runs correctly and adheres to Python’s syntax, including using standard ASCII quotation marks and adding proper indentation for the if
and else
blocks, here’s the revised version:
age = int(input("What is your age? "))
if age >= 18:
print("You are old enough to vote!")
else:
print("You are not old enough to vote.")
This code will:
- Prompt the user to enter their age.
- Check if the age is 18 or older.
- Print a message indicating whether the user is old enough to vote.