python如何输出字典的键值对
时间: 2024-01-26 22:13:36 浏览: 103
如何通过键值对访问字典.pptx
以下是两种Python输出字典键值对的方法:
1. 使用for循环遍历字典的键,然后通过键获取对应的值:
```python
dic = {'name':'jyw', 'lang':'python', 'age':'21'}
for i in dic:
print(i, dic[i])
```
输出:
```
name jyw
lang python
age 21
```
2. 使用for循环遍历字典的键值对,通过items()方法同时获取键和值:
```python
dic = {'name':'jyw', 'lang':'python', 'age':'21'}
for k, v in dic.items():
print(k, v)
```
输出:
```
name jyw
lang python
age 21
```
阅读全文