Python中的字典是一系列键-值对的集合。每个键都有一个值与之关联,我们可以使用键来获取与之关联的值。该值可以是数字,字符串,列表甚至是字典。可以将Python中的任何对象用作字典中的值
可以使用一对空的花括号定义一个空字典,再为其添加键-值对,也可以直接定义一个包含多个键-值对的字典,具体使用方法如下实例所示:
#方法一
car = {'color':'red','type':'SUV','age':2}
print("The color of my car is: " + car['color'])
print("The type of my car is: " + car['type'])
#方法二
car = {}
car['color'] = 'red'
car['type'] = 'SUV'
car['age'] = 2
print("The color of my car is: " + car['color'])
print("The type of my car is: " + car['type'])
上述代码的运行结果如下:
The color of my car is: red
The type of my car is: SUV
要想访问字典中与某个键关联的值,可以通过字典名+键获取,具体使用方法如2.2.1中的实例中方法二所示
字典是一个动态结构,可以随时向其中添加键-值对。具体使用方法如2.2.1中的实例中方法二所示
直接根据字典名与键对其进行重新赋值即可,具体使用方法如下实例所示:
car = {'color':'red','type':'SUV','age':2}
print("The color of my first car is: " + car['color'])
car['color'] = 'black'
print("The color of my second car is: " + car['color'])
上述代码的运行结果如下:
The color of my first car is: red
The color of my second car is: black
使用del语句删除字典中指定的键-值对,具体使用方法如下实例所示:
car = {'color':'red','type':'SUV','age':2}
print(car)
del car['age']
print(car)
上述代码的运行结果如下:
{'color': 'red', 'type': 'SUV', 'age': 2}
{'color': 'red', 'type': 'SUV'}
使用for循环与item()方法遍历字典中所有的键-值对,具体使用方法如下实例所示:
car = {'color':'red','type':'SUV','age':2}
for key,value in car.items():
print("\nKey: " + key)
print("Value: " + str(value))
上述代码的运行结果如下:
Key: color
Value: red
Key: type
Value: SUV
Key: age
Value: 2
使用for循环与key()方法遍历字典中所有的键,具体使用方法如下实例所示:
car = {'color':'red','type':'SUV','age':2}
for key in car.keys():
print("Key: " + key)
上述代码的运行结果如下:
Key: color
Key: type
Key: age
使用for循环与values()方法遍历字典中所有的值,具体使用方法如下实例所示:
car = {'color':'red','type':'SUV','age':2}
for value in car.values():
print("value: " + str(value))
上述代码的运行结果如下:
value: red
value: SUV
value: 2