Question
Create a Python program that: Collects the user's: Car make Car model year Car model Number of miles driven on the last trip Amount of
Create a Python program that:
Collects the user's:
Car make
Car model year
Car model
Number of miles driven on the last trip
Amount of fuel used on the last trip (gallons)
Calculates fuel mileage achieved on each trip (miles/fuel used)
Display the vehicle's model year, make, and model on a single line separated by spaces
Display fuel mileage on a separate lines
If the calculated fuel mileage is 25 miles/gallon or better, display the message "Fuel Efficient" beside the calculated fuel mileage; if the calculated mileage is less than 25 miles/gallon, display the message "Gas Guzzler" beside the calculated fuel mileage.
Calculates the average mileage for any number of mileage entries
Create a loop that will execute as many times as the user desires
Prompt the user to enter the trip distance and amount of fuel used for the trip
Display the gas mileage achieved on each trip and whether the vehicle was "Fuel Efficient" or a "Gas Guzzler"
Ask the user if they have any more trips they wish to enter
Stop the loop when the user does not wish to add more trips
Use an if statement to test the user's response
Calculate the average mileage from all of the trips and display it
Supplemental Information:
The program should:
Use variables with meaningful names
Display easily understood prompts when collecting user input
Have appropriate comments indicating what each part of the program is doing
Have a comment area at the beginning of the program identifying the author of the program and the class it was created for
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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