Final answer:
A dictionary is created to store the size, crust type, and toppings for a large pizza with thick crust and various toppings. An f-string is then used to format and print the order summary.
Step-by-step explanation:
To store information about a pizza order, we can create a dictionary in a programming language such as Python. This dictionary will hold the size, crust type, and toppings of the pizza. Considering the customer's choice, we can set up the dictionary like this:
{
'size': 'large',
'crust': 'thick',
'toppings': ['mushrooms', 'extra cheese', 'green peppers', 'onion', 'sausage']
}
After creating the dictionary, we can use an f-string to print out the order summary:
order_summary = f"You ordered a {pizza_order['size']} {pizza_order['crust']} crust pizza with the following toppings: {', '.join(pizza_order['toppings'])}"
print(order_summary)
By running this code, you would get an output summarizing the pizza order in a friendly and clear manner.