python 历遍dict
时间: 2024-01-08 07:21:25 浏览: 120
以下是两种Python遍历字典的方法:
1. 使用for循环遍历字典的键:
```python
book = {'title': 'Python', 'author': '--', 'press': '人生苦短,我用python'}
for key in book:
print(key) # 输出结果:title author press
```
2. 使用items()方法遍历字典的键值对:
```python
book = {'title': 'Python', 'author': '--', 'press': '人生苦短,我用python'}
for key, value in book.items():
print(key, value) # 输出结果:title Python author -- press 人生苦短,我用python
```
相关问题
python 倒序历遍字典
要倒序遍历字典,可以使用内置函数 `reversed()`:
```python
my_dict = {'a': 1, 'b': 2, 'c': 3}
for key in reversed(my_dict):
value = my_dict[key]
print(key, value)
```
这将以倒序的方式输出字典的键值对。
另一种方法是使用 `sorted()` 函数和 `reverse=True` 参数,如下所示:
```python
for key in sorted(my_dict, reverse=True):
value = my_dict[key]
print(key, value)
```
这两种方法都可以实现字典的倒序遍历。
阅读全文