Guest User

Untitled

a guest
Apr 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. cont = 0
  2. while True:
  3. notas = float(input("Informe a nota: "))
  4. if notas == -1:
  5. break
  6. cont += 1
  7. print(cont)
Add Comment
Please, Sign In to add comment