Answered step by step
Verified Expert Solution
Question
1 Approved Answer
6.19LAB : Driving costs - functions Write a function driving_cost() with input parameters miles_per_gallon, dollars_per_gallon, and miles_driven, that returns the dollar cost to drive those
6.19LAB : Driving costs - functions Write a function driving_cost() with input parameters miles_per_gallon, dollars_per_gallon, and miles_driven, that returns the dollar cost to drive those miles. All items are of type float. The function called with arguments (20.0,3.1599,50.0) returns 7.89975. Define that function in a program whose inputs are the car's miles per gallon and the price of gas in dollars per gallon (both float). Output the gas cost for 10 miles, 50 miles, and 400 miles, by calling your driving_cost 0 function three times. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print(f'\{your_value:.2f\}') Ex: If the input is: 20.03.1599 the output is: 1.587.9063.20 Your program must define and call a function: def driving_cost(miles_per_gallon, dollars_per_gallon, miles_driven)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started