Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # if, while, for
- """
- Programa que pide una edad y devuelve condicion ante el voto:
- Ej:
- menos de 16: prohibido
- de 16 a 18: optativo
- de 18 a 70: obligatorio
- de 70 en adelante: optativo
- """
- while True:
- edad = int(input("Ingrese su edad: "))
- if edad < 16:
- print("Voto prohibido")
- elif edad < 18 or edad > 70:
- print("Voto optativo")
- else:
- print("Voto obligatorio")
- opcion = input("Presione cualquier tecla (o 'x' para salir): ")
- if opcion == "x":
- print("Gracias por usar este programa...")
- break
Advertisement
Add Comment
Please, Sign In to add comment