📜  python 字典 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:23.023000             🧑  作者: Mango

代码示例6
stationary_items = {
    "Pencil":"Pencil is used to write things in copy",
    "Eraser": "Eraser is used to remove the written things",
    "Sharpner":"This is used to sharp your pencil"
}
print(stationary_items["Pencil"])