Python 简明教程
Python - Loop Dictionaries
Loop Through Dictionaries
在 Python 中遍历字典是指迭代字典中的键值对并对每对执行操作。这便于访问键及其对应的值。有几种方法/方法可用于遍历字典 −
-
Using a for Loop
-
Using dict.items() method
-
Using dict.keys() method
-
Using dict.values() method
Loop Through Dictionary Using a For Loop
Python 中的 for 循环是一个控制流语句,它迭代一系列元素。它对序列中的每一个项目重复执行一个代码块。该序列可以是数字范围、列表、元组、字符串或任何可迭代对象。
我们可以通过迭代字典中的键或键值对来使用 Python 中的 for 循环遍历字典。有两种常见途径 −
Loop Through Dictionary Using dict.items() Method
Python 中的 dict.items() 方法用于返回一个视图对象,该对象显示字典中的键值对列表。该视图对象提供字典项目的动态视图,允许访问其键及其对应值。
我们可以通过迭代该方法返回的键值对使用 dict.items() 方法来遍历字典。
Example
此例中,在 "student" 字典中调用了 items() 方法,返回包含键值对的视图对象。for 循环迭代每一对,将键分配给变量 "key",将对应值分配给变量 "value" −
student = {"name": "Alice", "age": 21, "major": "Computer Science"}
# Looping through key-value pairs
for key, value in student.items():
print(key, value)
下面显示了产生的输出:
name Alice
age 21
major Computer Science
Loop Through Dictionary Using dict.keys() Method
Python 中的 dict.keys() 方法用于返回一个视图对象,该对象显示字典中的键列表。该视图对象提供字典键的动态视图,允许访问并迭代它们。
我们可以通过迭代此方法返回的键使用 dict.keys() 方法来遍历字典。这便于访问并迭代字典的键。