fork download
  1. estado_civil = input ("Favor indicar su estado civil (1-3):")
  2.  
  3. if estado_civil == 1 :
  4. print ("Usted es Casado")
  5. elif estado_civil == 2 :
  6. print ("Usted es Soltero")
  7. elif estado_civil == 3 :
  8. print ("Usted esta en Unión Libre")
  9. else :
  10. print ("Su estado es Indefinido")
  11.  
  12. print ("Gracias por la información!")
Runtime error #stdin #stdout #stderr 0.04s 64388KB
stdin
Standard input is empty
stdout
Favor indicar su estado civil (1-3):
stderr
Traceback (most recent call last):
  File "prog.py", line 1, in <module>
    estado_civil = input ("Favor indicar su estado civil (1-3):")
EOFError