Advertisement
LucasCiappa97

Ciapparelli_Ejercicio10

Mar 30th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. print('Pedir una nota entre 0 y 10')
  2. nota = int (input())
  3. if nota <= 3:
  4.     print('Insuficiente')
  5. elif nota <= 5:
  6.     print('regular')
  7. elif nota <= 7:
  8.     print('Bueno')
  9. elif nota <= 9:
  10.     print('Muy Bueno')
  11. elif nota <= 10:
  12.     print('Sobresaliente')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement