Question: 1. This function converts miles to kilometers (km). 1. Complete the function to return the result of the conversion 2. Call the function to convert

1. This function converts miles to kilometers (km). 1. Complete the function to return the result of the conversion 2. Call the function to convert the trip distance from miles to kilometers 3. Fill in the blank to print the result of the conversion 4. Calculate the round-trip in kilometers by doubling the result, and fill in the blank to print the result 1 # 1) Complete the function to return the result of the conversion 2 - def convert_distance(miles): km = miles * 1.6 # approximately 1.6 km in 1 mile vou WN 5 my_trip_miles = 55 7 # 2) Convert my_trip_miles to kilometers by calling the function above my_trip_km = --- # 3) Fill in the blank to print the result of the conversion print("The distance in kilometers is " + -) 11 Run 13 # 4) Calculate the round-trip in kilometers by doubling the result, 14 # and fill in the blank to print the result 15 print("The round-trip in kilometers is " + ___) Reset
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
