暂无描述

voting.py 224B

12345678
  1. age = 17
  2. if age >= 18:
  3. print("You are old enough to vote!")
  4. print("Have you registered to vote yet?")
  5. else:
  6. print("Sorry, you are too young to vote.")
  7. print("Please register to vote as soon as you turn 18!")