Answered step by step
Verified Expert Solution
Question
1 Approved Answer
6 . 1 7 LAB: Driving costs - functions Write a function driving _ cost ( ) with input parameters miles _ per _ gallon,
LAB: Driving costs functions
Write a function drivingcost with input parameters milespergallon, dollarspergallon, and milesdriven, that returns the dollar cost to drive those miles. All items are of type float. The function called with arguments returns
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 miles, miles, and miles, by calling your drivingcost function three times.
Output each floatingpoint value with two digits after the decimal point, which can be achieved as follows:
printfyourvalue:f
Ex: If the input is:
the output is:
Your program must define and call a function:
def drivingcostmilespergallon, dollarspergallon, milesdriven
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