可以使用字典的items()
方法遍历字典中的key和value。items()
方法返回一个包含字典中所有key-value对的可迭代对象,每个元素都是一个包含key和value的元组。
下面是一个例子:
my_dict = {"a": 1, "b": 2, "c": 3}
# 遍历字典中的key和value
for key, value in my_dict.items():
print("Key:", key)
print("Value:", value)
输出:
Key: a
Value: 1
Key: b
Value: 2
Key: c
Value: 3
在循环中,每次迭代都会将一个key-value对赋值给key
和value
变量,然后可以在循环体内使用它们。