In Python 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())...


In Python


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('Miles: {:f}'.format(miles_traveled))





Sample output with inputs: 70.0 100.0


Miles: 116.666667



''' Your solution goes here '''


miles_per_hour = float(input())
minutes_traveled = float(input())


print('Miles: {:f}'.format(mph_and_minutes_to_miles(miles_per_hour, minutes_traveled)))



Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here