Python/gloss python dictionary add item

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python在字典中添加项目

在字典中添加项目

通过使用新的索引键并为其分配值,可以向字典中添加项目:

thisdict =  {

  "brand": "Ford",

  "model": "Mustang",

  "year": 1964

}
thisdict["color"] = "red"
print(thisdict)