Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a function driving_cost () with input parameters miles_per_gallon, dollars_per_gallon, and miles_driven, that returns the cost in dollars to drive those miles rounded to
Write a function driving_cost () with input parameters miles_per_gallon, dollars_per_gallon, and miles_driven, that returns the cost in dollars to drive those miles rounded to 2 decimal places. All items are of type float. Ex: If the input is: Enter miles per gallon: 20.0 Enter dollars per gallon: 3.1599 Enter miles to drive: 50.0 the return value of the function is: 7.89975 but the output is: 7.90 because we want dollars and cents as an answer. Ex: If the input is: Enter miles per gallon: 18.0 Enter dollars per gallon: 4.599 Enter miles to drive: 210 the return value of the function is: 53.65500 but the output is: 53.66 Output the floating-point value with two digits after the decimal point, which can be achieved using a format specifier in your print statement (%f) Your program must define and call a function: def driving cost (miles_per_gallon, dollars_per_gallon, miles_driven)
Step by Step Solution
★★★★★
3.61 Rating (140 Votes )
There are 3 Steps involved in it
Step: 1
mainpy 2 1 def drivingcostmilespergallon dollarspergallon mi...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