Please add flowchart. Start the code: def convert_km_to_miles( km ): Function -- convert_km_to_miles Converts kilometers to miles. Absolute Value Parameters: km (float) .. the original distance in kilometers Returns a float value representing the original distance converted to miles return abs(km 0.621371) def convert_miles_to_km( miles ): Function -.. convert_miles_to_km Converts distance from miles to kilometers. Absolute value Parameters: miles (float) the original distance in miles Returns a float value representing the original distance converted to kilometers return abs(miles 1.60934) The United States is one of the last countries to still use the imperial system and miles for measuring distance. One software conversion error between US and metric measurements sent a $125 million NASA probe to its fiery death in Mars' atmosphere (Links to an external site.). The starter code given includes two functions that convert between metric and imperial values for distance (kilometers and miles). Your job is to test these two functions. You should write a main() in your test_distance.py file; when we run it, we should see all of your tests, the expected result for each one, and the actual result for each one.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 20PE
icon
Related questions
Question
Please add flowchart.
Start the code:
def convert_km_to_miles( km ):
Function -- convert_km_to_miles
Converts kilometers to miles. Absolute Value
Parameters:
km (float) -- the original distance in kilometers
Returns a float value representing the original distance converted
to miles
return abs(km * 0.621371)
def convert_miles_to_km( miles ):
Function -- convert_miles_to_km
Converts distance from miles to kilometers. Absolute value
Parameters:
miles (float) -- the original distance in miles
Returns a float value representing the original distance converted
to kilometers
return abs(miles 1.60934)
The United States is one of the last countries to still use the imperial system and miles for
measuring distance.
One software conversion error between US and metric measurements sent a $125 million NASA
probe to its fiery death in Mars' atmosphere (Links to an external site.).
The starter code given includes two functions that convert between metric and imperial values
for distance (kilometers and miles). Your job is to test these two functions. You should write a
main() in your test_distance.py file; when we run it, we should see all of your tests, the
expected result for each one, and the actual result for each one.
Transcribed Image Text:Please add flowchart. Start the code: def convert_km_to_miles( km ): Function -- convert_km_to_miles Converts kilometers to miles. Absolute Value Parameters: km (float) -- the original distance in kilometers Returns a float value representing the original distance converted to miles return abs(km * 0.621371) def convert_miles_to_km( miles ): Function -- convert_miles_to_km Converts distance from miles to kilometers. Absolute value Parameters: miles (float) -- the original distance in miles Returns a float value representing the original distance converted to kilometers return abs(miles 1.60934) The United States is one of the last countries to still use the imperial system and miles for measuring distance. One software conversion error between US and metric measurements sent a $125 million NASA probe to its fiery death in Mars' atmosphere (Links to an external site.). The starter code given includes two functions that convert between metric and imperial values for distance (kilometers and miles). Your job is to test these two functions. You should write a main() in your test_distance.py file; when we run it, we should see all of your tests, the expected result for each one, and the actual result for each one.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Linux
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr