How would you create a shopping list in Python? eggs, milk, water, apples, oranges

There are many ways to create a shopping list in Python. One simple approach would be to use a list data structure. You can define a list, add items to it, and then print the list.

Here's an example:

```python
# Define the shopping list
shopping_list = ['eggs', 'milk', 'water', 'apples', 'oranges']

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

Output:
```
Shopping List:
- eggs
- milk
- water
- apples
- oranges
```

In this example, we created a list called "shopping_list" that contains the items you mentioned. Then, we used a for loop to iterate over the list and print each item with a bullet point.