We will create a shopping cart, it is a dictionary mapping items in the car to the amount of that item. For example if there is one chicken in the cart the dictionary would be {'chicken' : 1}, modify the create_cart() function to return an empty cart"
python