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.
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.
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.
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.
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
Process by which instructions are given to a computer, software program, or application using code.
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
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.