9 lines
251 B
Python
9 lines
251 B
Python
# Exercise 4-1 Pizzas
|
|
# Learning Objective: Utilize a for loop with a list.
|
|
|
|
favoritePizzas = ['Meat lovers', 'White with Spinach and Feta', 'Pepperoni']
|
|
|
|
for pizza in favoritePizzas:
|
|
print(f"I like {pizza} pizza. \n")
|
|
|
|
print("I really love pizza!") |