ingredients = ['Spaghetti', 'Eggs', 'Parmesan Cheese', 'Bacon', 'Black Pepper']
message = 'Ingredients:'
for ingredient in ingredients:
# adjust the following line...
message += '- ' + ingredient
print(message)
#### expected: ####
# Ingredients:
# - Spaghetti
# - Eggs
# - Parmesan Cheese
# - Bacon
# - Black Pepper
Python
Setting up Python environment...
Output