DerioFT

1060.py

Sep 21st, 2021 (edited)
846
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. total = 0
  2.  
  3. for data in range(6):
  4.     number = float(input())
  5.  
  6.     if number > 0:
  7.         total += 1
  8.  
  9. print(total,"valores positivos")
  10.  
Add Comment
Please, Sign In to add comment