Skip to content

Instantly share code, notes, and snippets.

@brandon22esquivel
Created September 7, 2019 21:37
Show Gist options
  • Save brandon22esquivel/84cf40718bc9d6d7369d6f81831b7c16 to your computer and use it in GitHub Desktop.
Save brandon22esquivel/84cf40718bc9d6d7369d6f81831b7c16 to your computer and use it in GitHub Desktop.
def notas(nota):
if nota >= 0 and nota <= 3:
return "Insuficiente"
elif nota >= 4 and nota <= 6:
return "Suficiente"
elif nota >= 7 and nota <= 10:
return "Bien"
nota = input("Ingrese la nota: ")
print notas(nota)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment