Answer:
See explanation
Step-by-step explanation:
Replace the ____ with the expressions in bold and italics
1) return km
return km returns the result of the computation
2) = convert_distance(my_trip_miles)
convert_distance(my_trip_miles) calls the function and passes my_trip_miles to the function
3) + str(my_trip_km)
The above statement prints the returned value
4) +str(my_trip_km * 2)
The above statement prints the returned value multiplied by 2