Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def notas(nota):
  2. if nota >= 0 and nota <= 3:
  3. return "Insuficiente"
  4. elif nota >= 4 and nota <= 6:
  5. return "Suficiente"
  6. elif nota >= 7 and nota <= 10:
  7. return "Bien"
  8.  
  9. nota = input("Ingrese la nota: ")
  10. print notas(nota)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement