Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

How can I get rid of the extra space? This is Python Programming, btw. 2.12 LAB: Driving costs Driving is expensive. Write a program with

image text in transcribed

How can I get rid of the extra space?

This is Python Programming, btw.

2.12 LAB: Driving costs Driving is expensive. Write a program with a car's miles/gallon and gas dollars/gallon (both floats) as input, and output the gas cost for 10 miles, 50 miles, and 400 miles. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('%0.2f %0.2f %0.2f' % (your_value1, your_value2, your_value3)) Ex: If the input is: 20.0 3.1599 Then the output is: 1.58 7.90 63.20 Note: Real per-mile cost would also include maintenance and depreciation. 299420.1362278 LAB ACTIVITY 2.12.1: LAB: Driving costs 0/10 main.py Load default template... 1 def driving_cost(driven_miles, miles_per_gallon, dollars_per_gallon): return driven_miles/miles_per_gallon* dollars_per_gallon 3 4 5 if __name__ == '__main__': milesPerGallon float(input() dollarsPerGallon = float(input) 8 9 print('{:.2f}'.format(driving_cost(10,milesPerGallon, dollarsPerGallon) 10 print('{:.2f}'.format(driving cost(50,milesPerGallon, dollarsPerGallon)) 11 print('{:.2f}'.format(driving_cost(400,milesPerGallon, dollarsPerGallon)) 12

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

Essentials of Database Management

Authors: Jeffrey A. Hoffer, Heikki Topi, Ramesh Venkataraman

1st edition

133405680, 9780133547702 , 978-0133405682

More Books

Students also viewed these Databases questions