write my assignment 26988

I am not able to complete the 3rd and 4th step. 3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)

‘s auto shop invoice 1: Oil change, 2: Car wax, :

(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)

Ex:

Select first service: Tire rotationSelect second service: -Davy’s auto shop invoiceService 1: Tire rotation, $19Service 2: No serviceTotal: $19@@@@@@@ here is my [email protected]@@@services = {‘Oil changeTire rotationCar washCar wax-No service’}print(“Davy’ auto shop services”)print(‘Oil change — $35’)print(‘Tire rotation — $19’)print(‘Car wash — $7’)print(‘Car wax — $12’)total = 0firstService = str(input(‘nSelect first service: n’))secondService = str(input (‘nSelect second service: n’))print(“nnDavy’s auto shop invoicen”)if firstService == ‘Car wash’:    print(‘Service : %s, $7’% firstService)    total +=7elif firstService == ‘Car wax’:    print(‘Service : %s, $12’% firstService)    total +=12elif firstService == ‘Tire rotation’:     print(‘Service : %s, $19’% firstService)     total +=19elif firstService == ‘Oil change’:    print(‘Service : %s, $35’% firstService)    total =+35elif firstService == ‘No service’:    print(‘Service : No service’)    total if secondService == ‘Car wash’:    print(‘Service : %s, $7’% secondService)    total +=7elif secondService == ‘Car wax’:    print(‘Service : %s, $12’% secondService)    total +=12elif secondService == ‘Tire rotation’:     print(‘Service : %s, $19’% secondService)     total +=19elif secondService == ‘Oil change’:    print(‘Service : %s, $35’% secondService)    total =+35    elif secondService == ‘No service’:    print(‘Service : No service’)    total     print(”)    print(‘Total: $’+str(total))

The complete program.

1) Output a menu of automotive services and the corresponding cost of each service. (2 pts)

Ex:

Davy’s auto shop servicesOil Tire rotation Car wash Car wax

(2) Prompt the user for two services from the menu. (2 pts)

Ex:

service: Oil service: Car wax

(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)

‘s auto shop invoice 1: Oil change, 2: Car wax, :

(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)

Ex:

service: Tire rotation service: -Davy’s auto shop invoiceService 1: Tire rotation, $19Service 2: No serviceTotal: $19

 
"Not answered?"
Get the Answer