python将字典中的部分键值取出并存为新的字典
时间: 2023-04-11 12:01:08 浏览: 773
Python3 字典dictionary入门基础附实例
可以使用字典推导式来实现这个功能,例如:
```python
old_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}
new_dict = {key: old_dict[key] for key in ['a', 'c']}
print(new_dict) # {'a': 1, 'c': 3}
```
这个代码将原字典中键为'a'和'c'的键值对取出来,存储到新的字典中。
阅读全文