Python/gloss python dictionary

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

<languages />

Python字典

字典

字典是无序,可更改和索引的集合。在Python中,字典用大括号括起来,并且具有键和值。

创建并打印字典:

thisdict =  {

  "brand": "Ford",

  "model": "Mustang",

  "year": 1964

}

print(thisdict)