6.19 LAB: 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...


Python:


Look at image!




6.19 LAB: Driving costs - functions<br>Write a function driving_cost() with input parameters miles_per_gallon, dollars_per_gallon, and miles_driven, that returns the dollar cost to<br>drive those miles. All items are of type float. The function called with arguments (20.0, 3.1599, 50.0) returns 7.89975.<br>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<br>the gas cost for 10 miles, 50 miles, and 400 miles, by calling your driving_cost() function three times.<br>Output each floating-point value with two digits after the decimal point, which can be achieved as follows:<br>print(f'{your_value:.2f}')<br>Ex: If the input is:<br>20.0<br>3.1599<br>the output is:<br>1.58<br>7.90<br>63.20<br>Your program must define and call a function:<br>def driving_cost(miles_per_gallon, dollars_per_gallon, miles_driven)<br>

Extracted text: 6.19 LAB: 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() 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.0 3.1599 the output is: 1.58 7.90 63.20 Your program must define and call a function: def driving_cost(miles_per_gallon, dollars_per_gallon, miles_driven)

Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here