9 lines
219 B
Python
9 lines
219 B
Python
age = 17
|
|
if age >= 18:
|
|
print('You\'re old enough to vote.')
|
|
print('Have you registered to vote yet?')
|
|
else:
|
|
print('Sorry, you\'re too young to vote.')
|
|
print('Please register to vote when you turn 18.')
|
|
|