7 lines
223 B
Python
7 lines
223 B
Python
age = 17
|
|
if age >= 18:
|
|
print("You are old enough to vote!")
|
|
print("Have you registered to vote yet?")
|
|
else:
|
|
print("Sorry, you are too young to vote.")
|
|
print("Please register to vote as soon as you turn 18!") |