Final answer:
To create a shopping list in Python, use a list data type and store the items in it. Use list operations like adding or removing items, and print the list using the 'print()' function.
Step-by-step explanation:
To create a shopping list in Python, you can use a list data type. Here's an example:
shopping_list = ['apples', 'bananas', 'bread', 'milk']
# Printing the shopping list
print(shopping_list)
This code creates a variable called 'shopping_list' and assigns it a list of items. You can add or remove items from the list using different Python list operations. To print the shopping list, you can use the 'print()' function.