Warmup
Write a function big_mac that returns a dictionary with a key-value pair for each part of the big mac. It should have default parameters for cheese, onion, lettuce and tomato (booleans) so that the caller can customize their order.
print(big_mac(cheese=False))
assert big_mac(cheese=False) == {"cheese":False, "lettuce":True, "sesame_bun":True, "tomato":True}