Question: Driving is expensive. Write a program that takes in a car's miles/gallon and gas dollars/gallon (both floats) as input, and outputs the gas cost for

Driving is expensive. Write a program that takes in a car's miles/gallon and gas dollars/gallon (both floats) as input, and outputs the gas cost for 10 miles, 50 miles, and 400 miles.

Output each floating-point value with two digits after the decimal point. Use the example code for the print statement which uses three variables your_value1, your_value2, and your_value3. The code {:.2f} outputs a floating point number to two decimal places. print('{:.2f} {:.2f} {:.2f}'.format(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 

IN PYTHON PROGRAMMING LANGUAGE

Driving is expensive. Write a program that takes in a car's miles/gallon

Driving is expensive. Write a program that takes in a car's miles/gallon and gas dollars/gallon (both floats) as input, and outputs the gas cost for 10 miles, 50 miles, and 400 miles. Output each floating-point value with two digits after the decimal point. Use the example code for the print statement which uses three variables your_value1, your_value2, and your_value3. The code {:.2f} outputs a floating point number to two decimal places. print('\{:.2f {:.2f}{:.2f}.format (your_value1, your_value2, your_value3))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!