Question: Using the format method, fill in the gaps in the convert _ distance function so that it returns the phrase x miles equals Y

Using the format method, fill in the gaps in the convert_distance function so that it returns the phrase "x miles equals Y km", with Y having only 1 decimal place. For example, convert_distance(12) should return "12 miles equals 19.2 km".
def convert_distance(miles) :
km= miles **1.6
result ={} miles equals +,km format
return result
print(convert_distance(12)) # Should be: 12 miles equals 19.2km
print(convert_distance(5.5)) # Should be: 5.5 miles equals 8.8km
print(convert_distance(11)) # Should be: 11 miles equals 17.6km
Reset
 Using the format method, fill in the gaps in the convert_distance

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!