Python基础知识 -【字典dict】
字典是另一种可变容器模型,且可存储任意类型对象。字典的每个键值 key=>value 对用冒号 : 分割,每个对之间用逗号(,)分割,整个字典包括在花括号 {} 中 ,格式如下所示:[code]d = {key1 : value1, key2 : value2, key3 : value3 }[/code]注意:dict 作为 Python 的关键字和内置函数,变量名不建议命名为 dict。
[img]http://p.algo2.net/2024/0311/16d2b68688e48.png[/img]
键必须是唯一的,但值则不必。
值可以取任何数据类型,但键必须是不可变的,如字符串,数字。
一个简单的字典实例:[code]tinydict = {'name': 'runoob', 'likes': 123, 'url': 'www.runoob.com'}[/code][img]http://p.algo2.net/2024/0311/25c100cac9702.png[/img]
也可如此创建字典:[code]tinydict1 = { 'abc': 456 }
tinydict2 = { 'abc': 123, 98.6: 37 }[/code]创建空字典
使用大括号 { } 创建空字典:
实例[code]# 使用大括号 {} 来创建空字典
emptyDict = {}
# 打印字典
print(emptyDict)
# 查看字典的数量
print("Length:", len(emptyDict))
# 查看类型
print(type(emptyDict))[/code]以上实例输出结果:[code]{}
Length: 0
<class 'dict'>[/code]使用内建函数 dict() 创建字典:
实例[code]emptyDict = dict()
# 打印字典
print(emptyDict)
# 查看字典的数量
print("Length:",len(emptyDict))
# 查看类型
print(type(emptyDict))[/code]以上实例输出结果:[code]{}
Length: 0
<class 'dict'>[/code]访问字典里的值
把相应的键放入到方括号中,如下实例:
实例[code]#!/usr/bin/python3
tinydict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'}
print ("tinydict['Name']: ", tinydict['Name'])
print ("tinydict['Age']: ", tinydict['Age'])[/code]以上实例输出结果:[code]tinydict['Name']: Runoob
tinydict['Age']: 7[/code]如果用字典里没有的键访问数据,会输出错误如下:
实例[code]#!/usr/bin/python3
tinydict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'}
print ("tinydict['Alice']: ", tinydict['Alice'])[/code]以上实例输出结果:[code]Traceback (most recent call last):
File "test.py", line 5, in <module>
print ("tinydict['Alice']: ", tinydict['Alice'])
KeyError: 'Alice'[/code]修改字典
向字典添加新内容的方法是增加新的键/值对,修改或删除已有键/值对如下实例:
实例[code]#!/usr/bin/python3
tinydict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'}
tinydict['Age'] = 8 # 更新 Age
tinydict['School'] = "菜鸟教程" # 添加信息
print ("tinydict['Age']: ", tinydict['Age'])
print ("tinydict['School']: ", tinydict['School'])[/code]以上实例输出结果:[code]tinydict['Age']: 8
tinydict['School']: 菜鸟教程[/code]删除字典元素
能删单一的元素也能清空字典,清空只需一项操作。
显式删除一个字典用del命令,如下实例:
实例[code]#!/usr/bin/python3
tinydict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'}
del tinydict['Name'] # 删除键 'Name'
tinydict.clear() # 清空字典
del tinydict # 删除字典
print ("tinydict['Age']: ", tinydict['Age'])
print ("tinydict['School']: ", tinydict['School'])[/code]但这会引发一个异常,因为用执行 del 操作后字典不再存在:[code]Traceback (most recent call last):
File "/runoob-test/test.py", line 9, in <module>
print ("tinydict['Age']: ", tinydict['Age'])
NameError: name 'tinydict' is not defined[/code]注:del() 方法后面也会讨论。
字典键的特性
字典值可以是任何的 python 对象,既可以是标准的对象,也可以是用户定义的,但键不行。
两个重要的点需要记住:
1)不允许同一个键出现两次。创建时如果同一个键被赋值两次,后一个值会被记住,如下实例:
实例[code]#!/usr/bin/python3
tinydict = {'Name': 'Runoob', 'Age': 7, 'Name': '小菜鸟'}
print ("tinydict['Name']: ", tinydict['Name'])[/code]以上实例输出结果:[code]tinydict['Name']: 小菜鸟[/code]2)键必须不可变,所以可以用数字,字符串或元组充当,而用列表就不行,如下实例:
实例[code]#!/usr/bin/python3
tinydict = {['Name']: 'Runoob', 'Age': 7}
print ("tinydict['Name']: ", tinydict['Name'])[/code]以上实例输出结果:[code]Traceback (most recent call last):
File "test.py", line 3, in <module>
tinydict = {['Name']: 'Runoob', 'Age': 7}
TypeError: unhashable type: 'list'[/code] 字典内置函数&方法
Python字典包含了以下内置函数:
[img]http://p.algo2.net/2024/0311/2b09d259e371e.png[/img]
Python字典包含了以下内置方法:
[table]
[tr][td]序号[/td][td]函数及描述[/td][/tr]
[tr][td]1[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-clear.html]dict.clear()[/url]
删除字典内所有元素 [/td][/tr]
[tr][td]2[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-copy.html]dict.copy()[/url]
返回一个字典的浅复制[/td][/tr]
[tr][td]3[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-fromkeys.html]dict.fromkeys()[/url]
创建一个新字典,以序列seq中元素做字典的键,val为字典所有键对应的初始值[/td][/tr]
[tr][td]4[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-get.html]dict.get(key, default=None)[/url]
返回指定键的值,如果键不在字典中返回 default 设置的默认值[/td][/tr]
[tr][td]5[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-in.html]key in dict[/url]
如果键在字典dict里返回true,否则返回false[/td][/tr]
[tr][td]6[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-items.html]dict.items()[/url]
以列表返回一个视图对象[/td][/tr]
[tr][td]7[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-keys.html]dict.keys()[/url]
返回一个视图对象[/td][/tr]
[tr][td]8[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-setdefault.html]dict.setdefault(key, default=None)[/url]
和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default[/td][/tr]
[tr][td]9[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-update.html]dict.update(dict2)[/url]
把字典dict2的键/值对更新到dict里[/td][/tr]
[tr][td]10[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-values.html]dict.values()[/url]
返回一个视图对象[/td][/tr]
[tr][td]11[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-pop.html]pop(key[,default])[/url]
删除字典 key(键)所对应的值,返回被删除的值。[/td][/tr]
[tr][td]12[/td][td][url=https://www.runoob.com/python3/python3-att-dictionary-popitem.html]popitem()[/url]
返回并删除字典中的最后一对键和值。[/td][/tr]
[/table]
页:
[1]