print("Davy's auto shop services") print("Oil change -- $35") print("Tire rotation -- $19") print("Car wash -- $7") print("Car wax -- $12") print() service1=input("Select first service:") print() service2=input("Select second service:") print() dic={"Oil change":"35","Tire rotation":"19","Car wash":"7","Car wax":"12"} total = 0 print() print("Davy's auto shop invoice") print() for key,value in dic.items():     if(service1 == key):         print("Service 1:",key+str(", $")+dic[key])         total = total + int(dic[key])     if(service2 == key):         print("Service 2:",key+str(", $")+dic[key])         total = total + int(dic[key]) if(service1 == "-"):     print("Service 1:", "No service") if(service2 == "-"):     print("Service 2:", "No service") print() print("Total: $"+str(total))   Error : Davy's auto shop services Oil change -- $35 Tire rotation -- $19 Car wash -- $7 Car wax -- $12 Select first service: Select second service: Davy's auto shop invoice Service 2: Car wax, $12 Service 1: No service Total: $12 it should output : Davy's auto shop services Oil change -- $35 Tire rotation -- $19 Car wash -- $7 Car wax -- $12 Select first service: Select second service: Davy's auto shop invoice Service 1: No service Service 2: Car wax, $12 Total: $12

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I need help with the last part of this code :

print("Davy's auto shop services")
print("Oil change -- $35")
print("Tire rotation -- $19")
print("Car wash -- $7")
print("Car wax -- $12")
print()
service1=input("Select first service:")
print()
service2=input("Select second service:")
print()


dic={"Oil change":"35","Tire rotation":"19","Car wash":"7","Car wax":"12"}
total = 0
print()

print("Davy's auto shop invoice")
print()
for key,value in dic.items():
    if(service1 == key):
        print("Service 1:",key+str(", $")+dic[key])
        total = total + int(dic[key])
    if(service2 == key):
        print("Service 2:",key+str(", $")+dic[key])
        total = total + int(dic[key])
if(service1 == "-"):
    print("Service 1:", "No service")
if(service2 == "-"):
    print("Service 2:", "No service")
print()
print("Total: $"+str(total))

 

Error :

Davy's auto shop services

Oil change -- $35 Tire rotation -- $19 Car wash -- $7 Car wax -- $12

Select first service:

Select second service:

Davy's auto shop invoice

Service 2: Car wax, $12

Service 1: No service Total: $12

it should output :

Davy's auto shop services

Oil change -- $35 Tire rotation -- $19 Car wash -- $7 Car wax -- $12

Select first service:

Select second service:

Davy's auto shop invoice

Service 1: No service

Service 2: Car wax, $12

Total: $12

Expert Solution
Step 1

print("Davy's auto shop services")
print("Oil change -- $35")
print("Tire rotation -- $19")
print("Car wash -- $7")
print("Car wax -- $12")
print(" press - if no service required")
service1=input("Select first service:")
service2=input("Select second service:")
dic={"Oil change":"35","Tire rotation":"19","Car wash":"7","Car wax":"12"}
total = 0
print("Davy's auto shop invoice")
for key,value in dic.items():
    if(service1 == key):
        total = total + int(value)
    if(service2 == key):
        total = total + int(value)
if(service1 == "-"):
    print("Service 1:", "No service")
else:
    print("Service 1:",service1+str("$")+dic[service1])
if(service2 == "-"):
    print("Service 2:", "No service")
else:
    print("Service 2:",service2+str("$")+dic[service2])
print("Total: $"+str(total))

OUTPUT:

Davy's auto shop services
Oil change -- $35
Tire rotation -- $19
Car wash -- $7
Car wax -- $12
press - if no service required
Select first service: -
Select second service: Car wash

Davy's auto shop invoice

Service 1: No service

Service 2: Car wash$7

Total: $7

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Mathematical functions
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education