Answer to Question #349886 in Python for Torun

Question #349886

Suppose, your friend is building an automated car called “Besla”. He needs to fix the programming of the car so that it runs at a proper speed. Now, write a python program that takes 2 inputs (distance in meters and time in seconds). The program should then print the velocity in kilometers per hour of that car. Also, it should print whether the car is working properly based on the following chart.





Velocity




Information to be printed





Less than 60 km/h




Too slow. Needs more changes.





Between 60 km/h to 90 km/h




Velocity is okay. The car is ready!





Greater than 90 km/h




Too fast. Only a few changes should suffice.





1
Expert's answer
2022-06-13T08:29:03-0400
import sys


meters, seconds = [int(str) for str in sys.argv[1:]]
speed = meters / seconds * 3.6
print(f'{speed} km/h')


if speed < 60:
    print('Too slow. Needs more changes.')
elif speed > 90:
    print('Too fast. Only a few changes should suffice.')
else:
    print('Velocity is okay. The car is ready!')

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS