Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- while True:
- ######################################################
- edad = int(input("Ingrese su edad: "))
- if 0 < edad < 16:
- print("No puede votar")
- elif 16 <= edad < 18 or edad >= 70:
- print("Voto optativo")
- elif 18 <= edad < 70:
- print("Voto obligatorio")
- else:
- print("Error en el ingreso de la edad")
- opcion = input("Presione cualquier tecla para continuar (o '1' para salir): ")
- ##############################################
- if opcion == "1":
- print("Gracias por usar este programa...")
- break
Advertisement
RAW Paste Data
Copied
Advertisement