Shopping Cart

Complete all the steps.
### Step 1 ### ### Create a dictionarry called shopping_cart where the keys are ### the items in the products list and the values correspond to ### the values in the prices list. products = ['tomatoes', 'bananas', 'eggs'] prices = [2.99, 1.5, 1.99]
# add code here...
assert shopping_cart['tomatoes'] == 2.99 assert shopping_cart['bananas'] == 1.5 assert shopping_cart['eggs'] == 1.99
Setting up Python environment...
Console
Step 1: