9 lines
263 B
Python
9 lines
263 B
Python
def make_pizza(size, *toppings):
|
|
print("\n Making a " + str(size) + "-inch pizza with the following toppings:")
|
|
for topping in toppings:
|
|
print("-" + topping)
|
|
|
|
'''
|
|
make_pizza('pepperoni')
|
|
make_pizza('mushrooms', 'green peppers', 'extra cheese')
|
|
''' |