Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python. 2.13 LAB: Driving costs Driving is expensive. Write a program with a car's gas milage (miles/gallon) and the cost of gas (doliars/gallon) as fioating-point

Python.
image text in transcribed
image text in transcribed
2.13 LAB: Driving costs Driving is expensive. Write a program with a car's gas milage (miles/gallon) and the cost of gas (doliars/gallon) as fioating-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_valuel:.2f) \{your_value2t.2f\} \{your_value3:.2f\}') Ex. If the input is: 20.03.1599 Where the gas mileage is 20.0 miles/galion and the cost of gas is $31599/9a lon, the output is: 3.1611.8579.00 Note: Real permile cost would also include maintenance and depreciation. 1 ... Type your code here. 2 mileage =20.0 3 dollars _per_galton =3.1599 4 cost_20_miles =20 * dollar_per_gatlon / mileage 5 cost_75_miles =75 dollar_per_gatlon/mileage 6 cost 500 miles =500 dollar_per_gallon /mil leage 7 print ( f{ cost_20_miles: . 2f\} { cost_75_miles:.2f\} { cost_500_miles:.2f\} ) Run your program as often as youd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box

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

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

3rd Edition

0760049041, 978-0760049044

More Books

Students also viewed these Databases questions

Question

2. Are my sources up to date?

Answered: 1 week ago