Skip to content

Instantly share code, notes, and snippets.

@Ad115
Created October 1, 2018 19:12
Show Gist options
  • Save Ad115/4690e8efea6099f54508f2acc71d881c to your computer and use it in GitHub Desktop.
Save Ad115/4690e8efea6099f54508f2acc71d881c to your computer and use it in GitHub Desktop.
Ejemplo de un error de ejecución
edad = int(input("Cuántos años tienes?"))
if edad > 65:
print("Ya te jubilaste?")
elif tu_edad > 21:
print("Ya eres un adulto.")
elif edad > 13:
print("Eres todo un joven adolescente.")
else:
print("Eres un niño!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment