# Dictionary with quoted or variable keys d1 = { "name":"donuts", "type":"chocolate", "quantity":10 } # Dictionary with fixed keys d2 = dict(name="donuts", type="chocolate", quantity=10) assert d1 == d2 #//python/8024