Curso_Intensivo_de_PYTHON/chapter_05/voting.py

8 lines
224 B
Python
Raw Normal View History

2023-06-02 17:22:53 +02:00
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!")