Question: PYTHON PROGRAMMING a) Write a function that converts distance in units of miles to meters. To convert mile to kilometer, you multiply the distance by
PYTHON PROGRAMMING
a) Write a function that converts distance in units of miles to meters. To convert mile to kilometer, you multiply the distance by 1.60931.6093. To convert kilometer to meter, you multiply the distance by 10001000.
def mile_to_m(dist_mile):
write CODE HERE
b) Write a function that converts miles per hour to meters per second, used in the International System of Units. Round the return of the function to a number with a 3-digit precision after the decimal point.
Hint: You could use function round() for the right return. We recommend you to read the documentation for details on how the function works.
def meters_per_second(miles_per_hour):
"""Write docstrings here
Exercise 3 a) Write a function that converts distance in units of miles to meters. To convert mile to kilometer, you multiply the distance by 1.6093. To convert kilometer to meter, you multiply the distance by 1000. In [ ]: def mile_to_m(dist_mile): """Write doestrings here # YOUR CODE HERE raise Not ImplementedError() In [ ] : b) Write a function that converts miles per hour to meters per second, used in the International System of Units. Round the return of the function to a number with a 3-digit precision after the decimal point. Hint: You could use function round() for the right return. We recommend you to read the documentation for details on how the function works. In [ ]: def meters_per_second(miles_per_hour): "Write docstrings here III # YOUR CODE HERE raise Not ImplementedError() In [ ]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts

