1. 字典(dictionary)
是除列表以外python之中最灵活的内置数据结构类型。用"{ }"标识。字典由索引(key)和它对应的值value组成。
1.1 vs 列表
列表:有序的对象集合
字典:无序的对象集合,字典当中的元素是通过键来存取的,而不是通过偏移存取。
实例(Python 2.0+) #!/usr/bin/python # -*- coding: UTF-8 -*- dict = {} dict['one'] = "This is one" dict[2] = "This is two" tinydict = {'name': 'runoob','code':6734, 'dept': 'sales'} print dict['one'] # 输出键为'one' 的值 print dict[2] # 输出键为 2 的值 print tinydict # 输出完整的字典 print tinydict.keys() # 输出所有键 print tinydict.values() # 输出所有值
输出结果:
This is one This is two {'dept': 'sales', 'code': 6734, 'name': 'runoob'} ['dept', 'code', 'name'] ['sales', 6734, 'runoob']