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.
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!')
Comments
Leave a comment