Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What function will work to get the output on the same line? Driving is expensive. Write a program with a car's gas milage (miles/gallon) and

What function will work to get the output on the same line?

Driving is expensive. Write a program with a car's gas milage (miles/gallon) and the cost of gas (dollars/gallon) as floating-point input, and output the gas cost for 20 miles, 75 miles, and 500 miles. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print(f'{your_value1:.2f} {your_value2:.2f} {your_value3:.2f}') Ex: If the input is: 20.0 3.1599 where the gas mileage is 20.0 miles/gallon and the cost of gas is $3.1599/gallon, the output is: 3.16 11.85 79.00

LAB ACTIVITY 2.13.1: LAB:

Driving costs def driving_cost(driven_miles, miles_per_gallon, dollars_per_gallon):

return driven_miles / miles_per_gallon * dollars_per_gallon

milesPerGallon = float(input()) dollarsPerGallon = float(input())

print('{:.2f}'.format(driving_cost(20,milesPerGallon,dollarsPerGallon )))

print('{:.2f}'.format(driving_cost(75,milesPerGallon,dollarsPerGallon )))

print('{:.2f}'.format(driving_cost(500,milesPerGallon,dollarsPerGallon)))

Compare output Input 20.0 3.1599

Your output

3.16

11.85

79.00

Expected output 3.16 11.85 79.00 2

Your output

2.60

9.75

65.00

Expected output 2.60 9.75 65.00

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

New Trends In Databases And Information Systems Adbis 2019 Short Papers Workshops Bbigap Qauca Sembdm Simpda M2p Madeisd And Doctoral Consortium Bled Slovenia September 8 11 2019 Proceedings

Authors: Tatjana Welzer ,Johann Eder ,Vili Podgorelec ,Robert Wrembel ,Mirjana Ivanovic ,Johann Gamper ,Mikolaj Morzy ,Theodoros Tzouramanis ,Jerome Darmont

1st Edition

ISBN: 3030302776, 978-3030302771

More Books

Students also viewed these Databases questions

Question

using signal flow graph

Answered: 1 week ago