python-crash-course/Chapter_04/4-11_myPizzas.py
2025-01-21 14:31:30 -05:00

17 lines
435 B
Python

# Exercise 4-11 My Pizzas
# Learning Objective: Copy a list and add to it making sure it is independant of the original list.
favoritePizzas = ['Meat lovers', 'White with Spinach and Feta', 'Pepperoni']
friendPizzas = favoritePizzas[:]
favoritePizzas.append('Chicken Parmesean')
friendPizzas.append('Hawaiian')
print(f"My favorite pizzas are: {favoritePizzas}.\n")
print(f"My friend's favorite pizzas are: {friendPizzas}.\n")