Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- while True:
- #### aca va mi programa ##########
- edad = int(input("Por favor, ingrese su edad: "))
- if 0 < edad < 16:
- print("Voto prohibido")
- elif 16 <= edad < 18 or edad > 70:
- print("Voto optativo")
- elif 18 <= edad < 70:
- print("Voto obligatorio")
- else:
- print("Error de edad.")
- #### aca termina mi programa ########
- opcion = input("Presione cualquier tecla para seguir (o '1' para salir): ")
- if opcion == "1":
- print("Gracias por utilizar este programa...")
- break
Advertisement
Add Comment
Please, Sign In to add comment