写一个python遍历字典键和值
时间: 2023-12-12 10:57:39 浏览: 69
python遍历字典
5星 · 资源好评率100%
可以使用`items()`方法来遍历字典的键和值。示例代码如下:
```python
my_dict = {'name': 'John', 'age': 30, 'city': 'New York'}
# 遍历字典键和值
for key, value in my_dict.items():
print(key, value)
```
输出结果为:
```
name John
age 30
city New York
```
阅读全文