📅  最后修改于: 2020-12-23 04:51:42             🧑  作者: Mango
每个键都由一个冒号(:)与其值分隔,各项目之间以逗号分隔,并且整个内容都用花括号括起来。一个没有任何项目的空字典仅用两个大括号书写,例如:{}。
键在字典中是唯一的,而值可能不是。字典的值可以是任何类型,但是键必须是不可变的数据类型,例如字符串,数字或元组。
要访问字典元素,您可以使用熟悉的方括号和键来获取其值。以下是一个简单的例子-
#!/usr/bin/python3
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
print ("dict['Name']: ", dict['Name'])
print ("dict['Age']: ", dict['Age'])
执行以上代码后,将产生以下结果-
dict['Name']: Zara
dict['Age']: 7
如果我们尝试使用不是字典一部分的键来访问数据项,则会出现如下错误:
#!/usr/bin/python3
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
print ("dict['Alice']: ", dict['Alice'])
执行以上代码后,将产生以下结果-
dict['Zara']:
Traceback (most recent call last):
File "test.py", line 4, in
print "dict['Alice']: ", dict['Alice'];
KeyError: 'Alice'
您可以通过添加新条目或键值对,修改现有条目或删除现有条目来更新字典,如下面的简单示例所示。
#!/usr/bin/python3
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
dict['Age'] = 8; # update existing entry
dict['School'] = "DPS School" # Add new entry
print ("dict['Age']: ", dict['Age'])
print ("dict['School']: ", dict['School'])
执行以上代码后,将产生以下结果-
dict['Age']: 8
dict['School']: DPS School
您可以删除单个词典元素或清除词典的全部内容。您也可以通过单个操作删除整个词典。
要显式删除整个字典,只需使用del语句。以下是一个简单的例子-
#!/usr/bin/python3
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
del dict['Name'] # remove entry with key 'Name'
dict.clear() # remove all entries in dict
del dict # delete entire dictionary
print ("dict['Age']: ", dict['Age'])
print ("dict['School']: ", dict['School'])
这将产生以下结果。
出现异常是因为在del dict之后,字典不再存在。
dict['Age']:
Traceback (most recent call last):
File "test.py", line 8, in
print "dict['Age']: ", dict['Age'];
TypeError: 'type' object is unsubscriptable
注意-del()方法将在后续部分中讨论。
字典值没有限制。它们可以是任意的Python对象,可以是标准对象或用户定义的对象。但是,对于密钥来说并非如此。
关于字典键,有两点要记住-
(a)每个密钥不允许输入多个。这意味着不允许重复的密钥。如果在分配过程中遇到重复的键,则以最后一个分配为准。例如-
#!/usr/bin/python3
dict = {'Name': 'Zara', 'Age': 7, 'Name': 'Manni'}
print ("dict['Name']: ", dict['Name'])
执行以上代码后,将产生以下结果-
dict['Name']: Manni
(b)键必须是不变的。这意味着您可以将字符串,数字或元组用作字典键,但不允许使用[‘key’]之类的东西。以下是一个简单的例子-
#!/usr/bin/python3
dict = {['Name']: 'Zara', 'Age': 7}
print ("dict['Name']: ", dict['Name'])
执行以上代码后,将产生以下结果-
Traceback (most recent call last):
File "test.py", line 3, in
dict = {['Name']: 'Zara', 'Age': 7}
TypeError: list objects are unhashable
Python包含以下字典函数-
Sr.No. | Function & Description |
---|---|
1 |
cmp(dict1, dict2)
No longer available in Python 3. |
2 |
len(dict)
Gives the total length of the dictionary. This would be equal to the number of items in the dictionary. |
3 |
str(dict)
Produces a printable string representation of a dictionary |
4 |
type(variable)
Returns the type of the passed variable. If passed variable is dictionary, then it would return a dictionary type. |
Python包含以下字典方法-
Sr.No. | Method & Description |
---|---|
1 |
dict.clear()
Removes all elements of dictionary dict |
2 |
dict.copy()
Returns a shallow copy of dictionary dict |
3 |
dict.fromkeys()
Create a new dictionary with keys from seq and values set to value. |
4 |
dict.get(key, default=None)
For key key, returns value or default if key not in dictionary |
5 |
dict.has_key(key)
Removed, use the in operation instead. |
6 |
dict.items()
Returns a list of dict‘s (key, value) tuple pairs |
7 |
dict.keys()
Returns list of dictionary dict’s keys |
8 |
dict.setdefault(key, default = None)
Similar to get(), but will set dict[key] = default if key is not already in dict |
9 |
dict.update(dict2)
Adds dictionary dict2‘s key-values pairs to dict |
10 |
dict.values()
Returns list of dictionary dict‘s values |