How would you create a shopping list in Python?

To create a shopping list in Python, you can use a list data structure and various list manipulation operations. Here's an example of how you can do it:

```python
shopping_list = [] # Create an empty shopping list

# Add items to the shopping list
shopping_list.append("Apples")
shopping_list.append("Milk")
shopping_list.append("Bread")
shopping_list.append("Eggs")

# Print the shopping list
print("Shopping List:")
for item in shopping_list:
print(item)
```

This will create an empty shopping list and then add items to it using the `append()` method. Finally, it will print the shopping list using a loop. The output will be:

```
Shopping List:
Apples
Milk
Bread
Eggs
```

You can customize the code by adding/removing items, updating quantities, or implementing additional functionalities based on your requirements.