5 lines
216 B
Python
5 lines
216 B
Python
def make_pizza(size, *toppings):
|
|
"""Summarize the pizza we are about to make."""
|
|
print(f"\nMaking a {size}-inch pizza with the following toppings:")
|
|
for topping in toppings:
|
|
print(f"- {topping}")
|