Advertisement
Spocoman

06. Speed Info

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