Write a python program to calculate the total price for car wash services. A base car wash is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A '-' signifies an additional service was not selected. Output all selected services along with the corresponding costs and then the total price for all car wash services. Ex: If the input is: Tire shine Wax the output is: ZyCar Wash Base car wash -- $10 Tire shine -- $2 Wax -- $3 ---- Total price: $15 Ex: If the input is: Rain repellent - the output is: ZyCar Wash Base car wash -- $10 Rain repellent -- $2 ---- Total price: $12   I am having difficulty getting the cost associated with the additional services to add into the total cost.

EBK JAVA PROGRAMMING
8th Edition
ISBN:9781305480537
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 12PE
icon
Related questions
Question
100%

Write a python program to calculate the total price for car wash services. A base car wash is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A '-' signifies an additional service was not selected. Output all selected services along with the corresponding costs and then the total price for all car wash services.

Ex: If the input is:

Tire shine Wax

the output is:

ZyCar Wash Base car wash -- $10 Tire shine -- $2 Wax -- $3 ---- Total price: $15

Ex: If the input is:

Rain repellent -

the output is:

ZyCar Wash Base car wash -- $10 Rain repellent -- $2 ---- Total price: $12

 

I am having difficulty getting the cost associated with the additional services to add into the total cost. 

### Python Script for Car Wash Service Calculation

Below is a Python script that calculates the total cost of a car wash along with additional services selected by the user. The script takes user input for selecting two additional services and then computes the total price based on the base wash cost and the cost of the additional services.

```python
services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 }
servicesCost = { 2 : 1 , 2 : 2, 2 : 2, 3 : 3, 3 : 5 }
service_choice1 = input()
service_choice2 = input()
base_wash = 10
total = 0
cost1 = 0
cost2 = 0

for i in services:
    if service_choice1 == services[i]:
        cost1= servicesCost[i]
    if service_choice2 == services[i]:
         cost2 = servicesCost[i]

total = base_wash + cost1 + cost2
print("ZyCar Wash Base car wash -- $", base_wash)

if service_choice1 != "-":
    print(service_choice1,"--$", cost1)
if service_choice2 != "-":
    print(service_choice2,"--$", cost2)
print("Total price--$", total)
```

### Explanation of the Script

1. **Services Dictionary:**
    ```python
    services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 }
    ```
    This dictionary defines the available additional services and their corresponding identifiers.

2. **Service Costs Dictionary:**
    ```python
    servicesCost = { 2 : 1 , 2 : 2, 2 : 2, 3 : 3, 3 : 5 }
    ```
    This dictionary seems to define the costs for the services but note that the keys are duplicated, which can lead to unintended behavior in the script. In a correct implementation, each service should have a unique key.

3. **User Input:**
    ```python
    service_choice1 = input()
    service_choice2 = input()
    ```
    The script prompts the user to input two additional services they want
Transcribed Image Text:### Python Script for Car Wash Service Calculation Below is a Python script that calculates the total cost of a car wash along with additional services selected by the user. The script takes user input for selecting two additional services and then computes the total price based on the base wash cost and the cost of the additional services. ```python services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 } servicesCost = { 2 : 1 , 2 : 2, 2 : 2, 3 : 3, 3 : 5 } service_choice1 = input() service_choice2 = input() base_wash = 10 total = 0 cost1 = 0 cost2 = 0 for i in services: if service_choice1 == services[i]: cost1= servicesCost[i] if service_choice2 == services[i]: cost2 = servicesCost[i] total = base_wash + cost1 + cost2 print("ZyCar Wash Base car wash -- $", base_wash) if service_choice1 != "-": print(service_choice1,"--$", cost1) if service_choice2 != "-": print(service_choice2,"--$", cost2) print("Total price--$", total) ``` ### Explanation of the Script 1. **Services Dictionary:** ```python services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 } ``` This dictionary defines the available additional services and their corresponding identifiers. 2. **Service Costs Dictionary:** ```python servicesCost = { 2 : 1 , 2 : 2, 2 : 2, 3 : 3, 3 : 5 } ``` This dictionary seems to define the costs for the services but note that the keys are duplicated, which can lead to unintended behavior in the script. In a correct implementation, each service should have a unique key. 3. **User Input:** ```python service_choice1 = input() service_choice2 = input() ``` The script prompts the user to input two additional services they want
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Computational Systems
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,