bl00dt3ars

03. Speed Info

Oct 12th, 2020 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. speed = float(input())
  2.  
  3. if speed <= 10:
  4.     print("slow")
  5. elif 10 < speed <= 50:
  6.     print("average")
  7. elif 50 < speed <= 150:
  8.     print("fast")
  9. elif 150 < speed <= 1000:
  10.     print("ultra fast")
  11. else:
  12.     print("extremely fast")
Add Comment
Please, Sign In to add comment