12 lines
234 B
Python
12 lines
234 B
Python
pizza = {
|
|
'crust': 'thick',
|
|
'toppings': ['mushrooms', 'extra cheese'],
|
|
}
|
|
|
|
print(f'you ordered a {pizza['crust']}-crust pizza'
|
|
'with the following toppings:')
|
|
for topping in pizza['toppings']:
|
|
print(f'\t{topping}')
|
|
|
|
|