python 字典读取建值
时间: 2024-01-04 22:20:02 浏览: 107
python的字典生成
以下是使用Python字典读取键值的方法:
1. 使用方括号[]操作符:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
value = my_dict['name']
print(value) # 输出:John
```
2. 使用get()方法:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
value = my_dict.get('age')
print(value) # 输出:25
```
3. 使用items()方法遍历字典的键值对:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
for key, value in my_dict.items():
print(key, value)
# 输出:
# name John
# age 25
# city New York
```
4. 使用keys()方法遍历字典的键:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
for key in my_dict.keys():
print(key)
# 输出:
# name
# age
# city
```
5. 使用values()方法遍历字典的值:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
for value in my_dict.values():
print(value)
# 输出:
# John
# 25
# New York
```
阅读全文