2024-08-02: 3. Dictionary Sample

A small piece of code in learning #Python dictionary.

order = {
    "starter": {1: "Salad", 2: "Soup"},
    4: {1: [1, 2], 2: ["Steak"]},
    "dessert": {1: ["Ice Cream"], 2: []},
}
print(order[4][1][1])