1. 创建字典

Python字典是一种无序的键值对集合,可以使用两种方式创建字典:

d = {'name': 'Tom', 'age': 20}  
d = dict(name='Tom', age=20)

2. 字典操作

Python字典支持多种操作,如获取字典中的值、添加新键值对、删除键值对等:

# 获取字典中的值
value = d['name']

# 添加新键值对
d['gender'] = 'male'

# 删除键值对
del d['name']

3. 字典遍历

Python字典支持多种遍历方式,可以使用for循环遍历字典中的键值对:

for key, value in d.items():
    print(key, value)

也可以使用for循环遍历字典中的键:

for key in d:
    print(key)