a local pizza shop is selling a large pizza for $9.99. given the number of pizzas to order as input, output the subtotal for the pizzas, and then output the total after applying a sales tax of 6%. output each floating-point value with two digits after the decimal point, which can be achieved as follows:

Respuesta :

There must be a sequence control structure for the program.

According to the sequence control structure, there are no conditional statements, repeating actions, or iterative processes in the program.

The whole Python code, where each line's comments serve as explanations, is as follows:

This receives input from the user regarding the quantity of pizza.

count = int("Number of Pizza:" input)

This determines the total subtotal (without tax)

Subtotal: count * $9.99

This determines the total (with tax)

Total = Subtotal x 1.06

This displays the subtotal.

print("Subtotal: $:.2f", "Subtotal", "Subtotal")

This displays the total.

'Total: $:.2f'.format(Total)'

Both the total and the subtotal are computed and presented at the program's conclusion.

to know about total and subtotal

https://brainly.com/question/24100574

#SPJ4