Advertisement
teslariu

IF VOTO

Oct 19th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.59 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. """
  5. Script que pregunta la edad y responde con su condición frente al voto
  6.  
  7. menos de 16 años: voto prohibido
  8. 16 años cumplidos y menos de 18: voto optativo
  9. 18 años cumplidos y menos de 70: voto obligatorio
  10. 70 años cumplidos o más: voto optativo
  11. """
  12. edad = int(input("Ingrese su edad: "))
  13.  
  14. if 0 < edad < 16:
  15.     print("Voto prohibido")
  16.  
  17. elif  16 <= edad < 18 or edad >=70:
  18.     print("Voto optativo")
  19.  
  20. elif 18 <= edad < 70 :
  21.     print("Voto obligatorio")
  22.  
  23. else:
  24.     print("Error en el ingreso de la edad. ¿Ingresó 0 o un nro negativo?")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement