Python3 字典

字典是另一种可变容器模型,且可存储任意类型对象。

字典的每个键值 (key=>value) 对用冒号 (:) 分割,每个对之间用逗号 (,) 分割,整个字典包括在花括号 ({}) 中 ,格式如下所示:

  1. d = {key1 : value1, key2 : value2 }

键必须是唯一的,但值则不必。

值可以取任何数据类型,但键必须是不可变的,如字符串,数字或元组。

一个简单的字典实例:

  1. dict = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'}

也可如此创建字典:

  1. dict1 = { 'abc': 456 }
  2. dict2 = { 'abc': 123, 98.6: 37 }

访问字典里的值

把相应的键放入熟悉的方括弧,如下实例:

  1. #!/usr/bin/python3
  2. dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  3. print ("dict['Name']: ", dict['Name'])
  4. print ("dict['Age']: ", dict['Age'])

以上实例输出结果:

  1. dict['Name']: python3
  2. dict['Age']: 7

如果用字典里没有的键访问数据,会输出错误如下:

  1. #!/usr/bin/python3
  2. dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  3. print ("dict['Alice']: ", dict['Alice'])

以上实例输出结果:

  1. Traceback (most recent call last):
  2. File "test.py", line 5, in <module>
  3. print ("dict['Alice']: ", dict['Alice'])
  4. KeyError: 'Alice'

修改字典

向字典添加新内容的方法是增加新的键/值对,修改或删除已有键/值对如下实例:

  1. #!/usr/bin/python3
  2. dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  3. dict['Age'] = 8; # 更新 Age
  4. dict['School'] = "python3教程" # 添加信息
  5. print ("dict['Age']: ", dict['Age'])
  6. print ("dict['python3']: ", dict['python3'])

以上实例输出结果:

  1. dict['Age']: 8
  2. dict['python3']: python3教程

删除字典元素

能删单一的元素也能清空字典,清空只需一项操作。

显示删除一个字典用 del 命令,如下实例:

  1. #!/usr/bin/python3
  2. dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  3. del dict['Name'] # 删除键 'Name'
  4. dict.clear() # 删除字典
  5. del dict # 删除字典
  6. print ("dict['Age']: ", dict['Age'])
  7. print ("dict['python3']: ", dict['python3'])

但这会引发一个异常,因为用执行 del 操作后字典不再存在:

  1. Traceback (most recent call last):
  2. File "test.py", line 9, in <module>
  3. print ("dict['Age']: ", dict['Age'])
  4. TypeError: 'type' object is not subscriptable

注:del() 方法后面也会讨论。

字典键的特性

字典值可以没有限制地取任何 Python 对象,既可以是标准的对象,也可以是用户定义的,但键不行。

两个重要的点需要记住:

1)不允许同一个键出现两次。创建时如果同一个键被赋值两次,后一个值会被记住,如下实例:

  1. #!/usr/bin/python3
  2. dict = {'Name': 'python3', 'Age': 7, 'Name': '小菜鸟'}
  3. print ("dict['Name']: ", dict['Name'])

以上实例输出结果:

  1. dict['Name']: 小菜鸟

2)键必须不可变,所以可以用数字,字符串或元组充当,而用列表就不行,如下实例:

  1. #!/usr/bin/python3
  2. dict = {['Name']: 'pthon3', 'Age': 7}
  3. print ("dict['Name']: ", dict['Name'])

以上实例输出结果:

  1. Traceback (most recent call last):
  2. File "test.py", line 3, in <module>
  3. dict = {['Name']: 'python3', 'Age': 7}
  4. TypeError: unhashable type: 'list'

字典内置函数&方法

Python 字典包含了以下内置函数:

序号函数及描述实例
1len(dict) 计算字典元素个数,即键的总数。
  1. >>> dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  2. >>> len(dict)
  3. 3
2str(dict) 输出字典以可打印的字符串表示。
  1. >>> dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  2. >>> str(dict)
  3. "{'Name': 'python3', 'Class': 'First', 'Age': 7}"
3type(variable) 返回输入的变量类型,如果变量是字典就返回字典类型。
  1. >>> dict = {'Name': 'python3', 'Age': 7, 'Class': 'First'}
  2. >>> type(dict)
  3. <class 'dict'>

Python 字典包含了以下内置方法:

序号函数及描述
1radiansdict.clear() 删除字典内所有元素
2radiansdict.copy() 返回一个字典的浅复制
3radiansdict.fromkeys() 创建一个新字典,以序列seq中元素做字典的键,val为字典所有键对应的初始值
4radiansdict.get(key, default=None) 返回指定键的值,如果值不在字典中返回default值
5key in dict 如果键在字典dict里返回true,否则返回false
6radiansdict.items() 以列表返回可遍历的(键, 值) 元组数组
7radiansdict.keys() 以列表返回一个字典所有的键
8radiansdict.setdefault(key, default=None) 和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default
9radiansdict.update(dict2) 把字典dict2的键/值对更新到dict里
10radiansdict.values() 以列表返回字典中的所有值