8 lines
No EOL
180 B
Python
8 lines
No EOL
180 B
Python
# Ask the user for their age
|
|
age = int(input("Enter your age: "))
|
|
|
|
# Check if the user is 18 or older
|
|
if age >= 18:
|
|
print("You can vote")
|
|
else:
|
|
print("You cannot vote yet") |