Question: Write a function so that the main program below can be replaced by the simpler code that calls function mph _ and _ minutes _

Write a function so that the main program below can be replaced by the simpler code that calls function mph_and_minutes_to_miles(). Original main program:
miles_per_hour = float(input())
minutes_traveled = float(input())
hours_traveled = minutes_traveled /60.0
miles_traveled = hours_traveled * miles_per_hour
print(f'Miles: {miles_traveled:f}')
Sample output with inputs: 70.0100.0
Miles: 116.666667
''' Your solution goes here '''
miles_per_hour = float(input())
minutes_traveled = float(input())
print(f'Miles: {mph_and_minutes_to_miles(miles_per_hour, minutes_traveled):f}')

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!