19 lines
499 B
Python
19 lines
499 B
Python
menu_items = (
|
|
'rockfish sandwich', 'halibut nuggets', 'smoked salmon chowder',
|
|
'salmon burger', 'crab cakes',
|
|
)
|
|
|
|
print("You can choose from the following menu items:")
|
|
for item in menu_items:
|
|
print(f"- {item}")
|
|
|
|
menu_items = (
|
|
'rockfish sandwich', 'halibut nuggets', 'smoked salmon chowder',
|
|
'black cod tips', 'king crab legs',
|
|
)
|
|
|
|
print("\nOur menu has been updated.")
|
|
print("You can now choose from the following items:")
|
|
for item in menu_items:
|
|
print(f"- {item}")
|